diff options
author | Ajay Ramachandran <[email protected]> | 2021-07-30 23:36:31 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2021-07-30 23:36:31 -0400 |
commit | 788d4bf73c1c1eff5a533dcb8c7c70e480ee1f3b (patch) | |
tree | dc21794b80390a22f8ba7f4c0d9f6f0fee1754ee /package.json | |
parent | d73c666e1ff8cef5ed76cbf8a4496e7217bbae6d (diff) | |
download | SponsorBlock-788d4bf73c1c1eff5a533dcb8c7c70e480ee1f3b.tar.gz SponsorBlock-788d4bf73c1c1eff5a533dcb8c7c70e480ee1f3b.zip |
Build before running test
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index df66bbc4..117d7d45 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,8 @@ "dev:firefox": "npm run build:dev:firefox && concurrently \"npm run web-run:firefox\" \"npm run build:watch:firefox\"", "dev:firefox-android": "npm run build:dev:firefox && concurrently \"npm run web-run:firefox-android\" \"npm run build:watch:firefox\"", "clean": "rimraf dist", - "test": "npx jest", + "test": "npm run build:chrome && npx jest", + "testWithoutBuilding": "npx jest", "lint": "eslint src", "lint:fix": "eslint src --fix" }, |