setup testling

This commit is contained in:
Spencer Alger
2013-12-23 10:18:52 -07:00
parent 11c976e9f8
commit 3d0b2fde4e
11 changed files with 20906 additions and 334 deletions

View File

@ -3,7 +3,7 @@ module.exports = function (grunt) {
'build',
'browserify:yaml_tests',
'run:browser_unit_tests',
'run:browser_integration_tests'
// 'run:browser_integration_tests'
]);
grunt.registerTask('browser_clients:build', [

View File

@ -3,13 +3,9 @@ module.exports = {
exec: 'node scripts/generate'
},
browser_unit_tests: {
exec: 'node scripts/run_tests --unit --no-server',
exec: 'npm run browser_tests',
options: {
cwd: '.',
passArgs: [
'port',
'host'
]
cwd: '.'
}
},
browser_integration_tests: {