From c6301dfba38f6af68e162e5edd0f7a3f9eaf5a5a Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Thu, 21 Oct 2021 15:26:07 +0200 Subject: [PATCH] Fix test files regexp --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e3c150ab3656f..2c0103084b214 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js", "lint": "eslint '**/src/**/*.{vue,js}'", "lint:fix": "eslint '**/src/**/*.{vue,js}' --fix", - "test": "jest", + "test": "jest core/ --testRegex='[sS]pec.[tj]s'", "test:watch": "jest --watch", "test:jsunit": "karma start tests/karma.config.js --single-run" },