Fix test deps not installing automatically

This commit is contained in:
Kuba Orlik 2024-05-30 15:08:17 +02:00
parent 5686ebb5e4
commit 561b73eb5e
2 changed files with 2 additions and 4 deletions

1
package-lock.json generated
View File

@ -7,7 +7,6 @@
"": {
"name": "sealious-app",
"version": "0.1.0",
"hasInstallScript": true,
"license": "ISC",
"dependencies": {
"@babel/core": "^7.12.10",

View File

@ -15,11 +15,10 @@
"postbuild": "npm run typecheck && npm run lint",
"watch": "multiple-scripts-tmux -p watch",
"reset-db": "docker-compose down && docker-compose up -d",
"install-test-deps": "npx playwright install firefox",
"postinstall": "npm run install-test-deps",
"install-test-deps": "npx playwright install firefox && cd webhint && npm install",
"pretest": "npm run build && docker-compose up -d",
"test": "node test.cjs",
"prepare": "npm run build",
"prepare": "npm run build && npm run install-test-deps",
"lint": "eslint src",
"preinstrument": "npm run build && rm -fr .xunit coverage dist-instrumented",
"instrument": "npx nyc instrument --exclude \"\" dist dist-instrumented",