From fadae4506aea82bf6882d4be7ad20d5209063449 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Fri, 28 Apr 2017 18:46:43 +0200 Subject: [PATCH] Remove parameters not working on new jasmine version --- script/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test b/script/test index 922c0b48e5..c447ab28fa 100755 --- a/script/test +++ b/script/test @@ -40,5 +40,5 @@ normalizeCommand = (command) => { if (argv.interactive) { childProcess.spawnSync(normalizeCommand('./node_modules/.bin/electron'), ['spec/support/runner', 'spec/**/*-spec.*'], {stdio: 'inherit', cwd: path.join(__dirname, '..')}) } else { - process.exit(childProcess.spawnSync(normalizeCommand('./node_modules/.bin/jasmine'), ['--captureExceptions', '--forceexit', '--stop-on-failure=true'], {stdio: 'inherit'}).status) + process.exit(childProcess.spawnSync(normalizeCommand('./node_modules/.bin/jasmine'), ['--stop-on-failure=true'], {stdio: 'inherit'}).status) }