From a642b6c900de6ae8e7117aea7a139ad78022238f Mon Sep 17 00:00:00 2001 From: Danny McClanahan <1305167+cosmicexplorer@users.noreply.github.com> Date: Sat, 16 Nov 2024 13:56:35 -0500 Subject: [PATCH] [CAREFUL!] add defaults to avoid failing tests --- Cakefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Cakefile b/Cakefile index 85cd5dcd06..fb6f7ae2e5 100644 --- a/Cakefile +++ b/Cakefile @@ -622,7 +622,12 @@ option null, '--negFile [REGEXP*]', 'test file patterns to negatively match' option '-d', '--desc [REGEXP*]', 'test description patterns to positively match' option null, '--negDesc [REGEXP*]', 'test description patterns to negatively match' -consoleTask 'test', 'run the CoffeeScript language test suite', ({file, negFile, desc, negDesc} = {}) -> +consoleTask 'test', 'run the CoffeeScript language test suite', ({ + file = [], + negFile = ['sourcemap'], + desc = [], + negDesc = ['#4418', '#4558', 'dynamic import assertion', 'assert keyword'], +} = {}) -> testOptions = filePatterns: new PatternSet file negFilePatterns: new PatternSet negFile, {negated: yes}