diff options
author | sakshi87 <53863764+sakshi87@users.noreply.github.com> | 2020-10-22 03:13:26 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 23:43:26 +0200 |
commit | 91b6fc3f08a6256ebb8006f96661db163aa8b5bc (patch) | |
tree | ca3440a4cbcf2b02ef29416540d20e545b4c6031 /Gruntfile.js | |
parent | b15e45a45100ad8e64ef0d362380d9aa27fe6862 (diff) | |
download | jquery-ui-91b6fc3f08a6256ebb8006f96661db163aa8b5bc.tar.gz jquery-ui-91b6fc3f08a6256ebb8006f96661db163aa8b5bc.zip |
Build: Update grunt-contrib-qunit version from 1.0.1 to 4.0.0
Closes gh-1894
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index d472eaeef..9a64cefbe 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -225,7 +225,17 @@ grunt.initConfig( { return !( /(all|index|test)\.html$/ ).test( file ); } ), options: { - inject: false, + puppeteer: { + ignoreDefaultArgs: true, + args: [ + "--headless", + "--disable-web-security", + "--allow-file-access-from-files" + ] + }, + inject: [ + require.resolve( "grunt-contrib-qunit/chrome/bridge" ) + ], page: { viewportSize: { width: 700, height: 500 } } |