Skip to content

Commit

Permalink
Only build necessary bundles for test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
owenpearson committed Feb 24, 2022
1 parent 33f44c3 commit b0995e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,12 @@ module.exports = function (grunt) {
grunt.registerTask('test', ['test:node']);
grunt.registerTask('test:node',
'Build the library and run the node test suite\nOptions\n --test [tests] e.g. --test test/rest/auth.js',
['build', 'mocha']
['build:node', 'mocha']
);

grunt.registerTask('test:webserver',
'Launch the Mocha test web server on http://localhost:3000/',
['build', 'checkGitSubmodules', 'mocha:webserver']
['build:browser', 'checkGitSubmodules', 'mocha:webserver']
);

grunt.registerTask('release:refresh-pkgVersion',
Expand Down

0 comments on commit b0995e5

Please sign in to comment.