Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ test-backend:
test-frontend:
cd web && npm run test:unit

.PHONY: test-frontend-unit
test-frontend-unit:
cd web && npm run test:unit:ci

.PHONY: build-image
build-image:
./scripts/build-image.sh
Expand Down
1 change: 1 addition & 0 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"start:standalone": "npm run ts-node node_modules/.bin/webpack serve --stats-error-details --config webpack.standalone.config.ts",
"start-console": "../scripts/start-console.sh",
"test:unit": "TZ=UTC jest --config jest.config.js --passWithNoTests",
"test:unit:ci": "TZ=UTC jest --config jest.config.js --passWithNoTests --maxWorkers=2",
"test": "npm run cypress:run:ci",
"test-cypress-console": "./node_modules/.bin/cypress open --browser chrome",
"test-cypress-console-headless": "node --max-old-space-size=4096 ./node_modules/.bin/cypress run --browser chrome --headless",
Expand Down