Skip to content

Commit a642b6c

Browse files
[CAREFUL!] add defaults to avoid failing tests
1 parent 5cb0810 commit a642b6c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Cakefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,12 @@ option null, '--negFile [REGEXP*]', 'test file patterns to negatively match'
622622
option '-d', '--desc [REGEXP*]', 'test description patterns to positively match'
623623
option null, '--negDesc [REGEXP*]', 'test description patterns to negatively match'
624624

625-
consoleTask 'test', 'run the CoffeeScript language test suite', ({file, negFile, desc, negDesc} = {}) ->
625+
consoleTask 'test', 'run the CoffeeScript language test suite', ({
626+
file = [],
627+
negFile = ['sourcemap'],
628+
desc = [],
629+
negDesc = ['#4418', '#4558', 'dynamic import assertion', 'assert keyword'],
630+
} = {}) ->
626631
testOptions =
627632
filePatterns: new PatternSet file
628633
negFilePatterns: new PatternSet negFile, {negated: yes}

0 commit comments

Comments
 (0)