File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ module.exports = function(grunt) {
39
39
'command' : 'echo "Testing in Ringo..."; ringo -o -1 "tests/tests.js"'
40
40
} ,
41
41
'test-node' : {
42
+ 'command' : 'echo "Testing in Node..."; node "tests/tests.js"'
43
+ } ,
44
+ 'test-node-extended' : {
42
45
'command' : 'echo "Testing in Node..."; node "tests/tests.js" --extended'
43
46
} ,
44
47
'test-browser' : {
@@ -61,11 +64,12 @@ module.exports = function(grunt) {
61
64
grunt . registerTask ( 'test' , [
62
65
'shell:generate-test-data' ,
63
66
'ci' ,
67
+ 'shell:test-node-extended' ,
64
68
'shell:test-browser'
65
69
] ) ;
66
70
67
71
grunt . registerTask ( 'default' , [
68
- 'shell:test-node' ,
72
+ 'shell:test-node-extended ' ,
69
73
'cover'
70
74
] ) ;
71
75
Original file line number Diff line number Diff line change 42
42
var runExtendedTests = ( function ( ) {
43
43
try {
44
44
return process . argv [ 0 ] == 'node' && process . argv [ 2 ] == '--extended' ;
45
- } catch ( error ) { }
45
+ } catch ( exception ) { }
46
46
} ( ) ) ;
47
47
48
48
var data = [
You can’t perform that action at this time.
0 commit comments