From e059e20a545c60cfcb4f5d29f0290a71bdd9488d Mon Sep 17 00:00:00 2001 From: tabcat Date: Fri, 24 Nov 2023 20:03:04 +0300 Subject: [PATCH] chore: update path to tests in test scripts --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index af3c0deb..cae8a7f4 100644 --- a/package.json +++ b/package.json @@ -56,8 +56,8 @@ "build:meta": "rm -rf dist aegir/dist && tsc -p aegir && ln -sf ./aegir/dist/.aegir.js ./.aegir.js", "build": "npm run build:meta && aegir build && tsc-alias", "docs": "NODE_OPTIONS=--max_old_space_size=4096 aegir docs", - "test:chrome": "npm run build && aegir test -b -t browser -f ./dist/test/**/test-*.js", - "test:node": "npm run build && npm run clean && aegir test -b -t node -f ./dist/test/**/test-*.js -- --exit && npm run clean", + "test:chrome": "aegir test -b -t browser -f ./dist/test/**/*.spec.js", + "test:node": "npm run clean && aegir test -b -t node -f ./dist/test/**/*.spec.js -- --exit && npm run clean", "test": "npm run test:node && npm run test:chrome", "clean": "git clean -fq test/test-fixtures && git clean -fqX test/temp .polendina/ && git checkout -- test/test-fixtures" },