Getting rid of npm tests

pull/11750/head
Ivan Malagon 8 years ago
parent c4479395d5
commit de98f8cfe5

@ -299,9 +299,6 @@ module.exports = function(grunt) {
});
});
registerCmdTask('npm-test', {cmd: 'npm', args: ['test']});
registerCmdTask('npm-test-watch', {cmd: 'npm', args: ['run', 'test-watch']});
grunt.registerTask('pre_client', [
'copy:locale_core',
'copy:locale_client',
@ -319,7 +316,6 @@ module.exports = function(grunt) {
grunt.registerTask('pre_default', ['clean', 'config', 'js']);
grunt.registerTask('test', '(CI env) Re-build JS files and run all tests. For manual testing use `grunt jasmine` directly', [
'pre_default',
'npm-test',
'jasmine:cartodbui',
'jasmine:cartodb3',
'lint'

@ -169,9 +169,6 @@
"npmJsDir": "lib/assets"
},
"scripts": {
"test": "jasmine",
"test-debug": "node-debug --no-preload ./node_modules/.bin/jasmine --",
"test-watch": "watch 'npm test' $npm_package_config_npmJsDir",
"preupdate-internal-deps": "echo 'DEPRECATED TASK, use `npm run-script update-internal-deps` instead'",
"update-internal-deps": "rm -rf node_modules && npm install --no-shrinkwrap && npm shrinkwrap",
"branch-files": "node lib/build/branchFiles/branchFiles.js",

Loading…
Cancel
Save