disable e2e test, as it is getting unstable recently on GitHub action

This commit is contained in:
Louis Lam 2021-12-03 01:31:19 +08:00
parent ee79a34148
commit 8f3ef734bc
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
"build": "vite build --config ./config/vite.config.js",
"test": "node test/prepare-test-server.js && node server/server.js --port=3002 --data-dir=./data/test/ --test",
"test-with-build": "npm run build && npm test",
"jest": "node test/prepare-jest.js && npm run jest-frontend && npm run jest-backend && jest --runInBand --config=./config/jest.config.js",
"jest": "node test/prepare-jest.js && npm run jest-frontend && npm run jest-backend",
"jest-frontend": "cross-env TEST_FRONTEND=1 jest --config=./config/jest-frontend.config.js",
"jest-backend": "cross-env TEST_BACKEND=1 jest --config=./config/jest-backend.config.js",
"tsc": "tsc",
@ -130,4 +130,4 @@
"typescript": "~4.4.4",
"vite": "~2.6.14"
}
}
}