Skip to content

Commit

Permalink
Build: Fix missing coverage from main browser tests
Browse files Browse the repository at this point in the history
Move "sandboxed-iframe.html" test to the end.

Closes #1503.
  • Loading branch information
smcclure15 committed Nov 11, 2020
1 parent 755e3ca commit 01cfd23
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Gruntfile.js
Expand Up @@ -110,7 +110,6 @@ module.exports = function( grunt ) {
require.resolve( "grunt-contrib-qunit/chrome/bridge" )
],
urls: [
"test/sandboxed-iframe.html",
"test/index.html",
"test/autostart.html",
"test/startError.html",
Expand Down Expand Up @@ -145,7 +144,11 @@ module.exports = function( grunt ) {
"test/string-filter.html",
"test/module-only.html",
"test/module-skip.html",
"test/module-todo.html"
"test/module-todo.html",

// ensure this is last - it has the potential to drool
// and omit subsequent tests during coverage runs
"test/sandboxed-iframe.html"
].map( file => `http://localhost:${connectPort}/${file}` )
}
}
Expand Down

0 comments on commit 01cfd23

Please sign in to comment.