From bdc0ea4e5ce40b6ddba020ffeb799f9f4743b8eb Mon Sep 17 00:00:00 2001 From: Armin Date: Wed, 31 Jul 2024 08:07:54 +0300 Subject: [PATCH] simplify test command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 120b1fb..1940017 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "dev": "concurrently --kill-others -n api,workers -c green,blue \"yarn dev:api\" \"yarn dev:workers\"", "dev:api": "tsx --env-file=.env --env-file=.env.development --watch src/api/index.ts", "dev:workers": "tsc --noEmit && tsx --env-file=.env --env-file=.env.development --watch src/workers/index.ts", - "test": "echo '\n\n>>> ensure you have a running redis server locally <<<\n\n' && node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --config ./jest.config.js" + "test": "echo '\n\n>>> ensure you have a running redis server locally <<<\n\n' && jest" }, "author": "", "license": "MIT",