From ee140d84048db883ed7cc43d15a36e5d895d1fa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Belin?= Date: Wed, 13 Nov 2024 16:16:25 +0100 Subject: [PATCH] Update the "test" task --- gulpfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.coffee b/gulpfile.coffee index 3b1d620..f989729 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -28,7 +28,7 @@ export publish = -> export test = -> env.NODE_ENV = "test" await npx "coffee", "--compile", "--map", "--no-header", "--output", "lib", "src", "test" - await run "node", "--enable-source-maps", "--test", "--test-reporter=spec", "lib/**/*_test.js" + await run "node", "--enable-source-maps", "--test", "lib/**/*_test.js" # Watches for file changes. export watch = ->