From e5fd18a1f6083a55b8f9c25672a4ce7922557392 Mon Sep 17 00:00:00 2001 From: Trayan Azarov Date: Wed, 7 Feb 2024 15:32:02 +0200 Subject: [PATCH] fix: Fixing jest ignore patterns. Refs: #1604 --- clients/js/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/js/package.json b/clients/js/package.json index d9966954b1e..a25ad853caf 100644 --- a/clients/js/package.json +++ b/clients/js/package.json @@ -45,7 +45,7 @@ "testnoauth": "run-s db:clean db:run test:runfull db:clean", "testauth": "run-s db:cleanauth test:runfull-authonly db:cleanauth", "test:set-port": "cross-env URL=localhost:8001", - "test:run": "jest --runInBand --testPathIgnorePatterns='[\"test/auth.*.test.ts\",\"test/ssl.*.test.ts\"]'", + "test:run": "jest --runInBand --testPathIgnorePatterns=test/auth.*.test.ts --testPathIgnorePatterns=test/ssl.*.test.ts", "test:run-ssl": "jest --runInBand --testPathPattern=test/ssl.*.test.ts", "test:run-auth-basic": "jest --runInBand --testPathPattern=test/auth.basic.test.ts", "test:run-auth-token": "jest --runInBand --testPathPattern=test/auth.token.test.ts",