Skip to content

Commit f9e61eb

Browse files
committed
Fully revert breaking changes to core unit tests markup (htmllint ignores it now anyway).
Also update grunt.js: Simplify default task to finish that faster (also less console spam), remove beta from testswarm browserset, we don't need to test IE10 yet.
1 parent fc3fc6e commit f9e61eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

grunt.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ grunt.registerTask( "testswarm", function( commit, authToken ) {
370370
}
371371
testswarm({
372372
url: "http://swarm.jquery.org/",
373-
pollInterval: 5000,
373+
pollInterval: 10000,
374374
done: this.async()
375375
}, {
376376
authUsername: "jqueryui",
@@ -379,7 +379,7 @@ grunt.registerTask( "testswarm", function( commit, authToken ) {
379379
runMax: 4,
380380
"runNames[]": Object.keys(tests),
381381
"runUrls[]": testUrls,
382-
"browserSets[]": ["popular", "beta"]
382+
"browserSets[]": ["popular"]
383383
});
384384
});
385385

@@ -566,7 +566,7 @@ grunt.registerTask( "clean", function() {
566566
require( "rimraf" ).sync( "dist" );
567567
});
568568

569-
grunt.registerTask( "default", "lint csslint htmllint qunit build compare_size" );
569+
grunt.registerTask( "default", "lint csslint htmllint qunit" );
570570
grunt.registerTask( "sizer", "concat:ui min:dist/jquery-ui.min.js compare_size:all" );
571571
grunt.registerTask( "sizer_all", "concat:ui min compare_size" );
572572
grunt.registerTask( "build", "concat min cssmin" );

tests/unit/core/core.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h2 id="qunit-userAgent"></h2>
6161
<option>option</option>
6262
</select>
6363
<textarea id="visibleAncestor-textarea">x</textarea>
64-
<object id="visibleAncestor-object" codebase="about:blank" data="about:blank" type="text/html">xxx</object>
64+
<object id="visibleAncestor-object" codebase="about:blank">xxx</object>
6565
<a href="#" id="visibleAncestor-anchorWithHref">anchor</a>
6666
<a id="visibleAncestor-anchorWithoutHref">anchor</a>
6767
<span id="visibleAncestor-span">x</span>

0 commit comments

Comments
 (0)