|
3 | 3 | "version": "1.0.0", |
4 | 4 | "private": true, |
5 | 5 | "devDependencies": { |
6 | | - "@bitauth/libauth": "2.0.0", |
| 6 | + "@bitauth/libauth": "3.1.0-next.0", |
7 | 7 | "@blueprintjs/core": "^5.8.2", |
8 | 8 | "@blueprintjs/icons": "^5.7.0", |
9 | 9 | "@blueprintjs/select": "^5.0.23", |
10 | 10 | "@monaco-editor/react": "^4.6.0", |
11 | | - "@playwright/test": "^1.41.1", |
| 11 | + "@playwright/test": "^1.45.0", |
12 | 12 | "@types/node": "^20.11.5", |
13 | 13 | "@types/pako": "^2.0.3", |
14 | 14 | "@types/react": "^18.2.48", |
|
59 | 59 | "fix:eslint": "yarn test:eslint --fix", |
60 | 60 | "gen:assets:install": "yarn_enable_scripts=true yarn add -D @vite-pwa/assets-generator", |
61 | 61 | "gen:assets": "pwa-assets-generator --preset minimal public/favicon.svg", |
| 62 | + "test:install": "yarn playwright install", |
62 | 63 | "test": "yarn test:lint && yarn test:e2e", |
63 | 64 | "test:lint": "yarn test:prettier && yarn test:eslint && yarn test:spelling", |
64 | 65 | "test:eslint": "eslint . -c .eslintrc.cjs --max-warnings 0", |
|
70 | 71 | "e2e:report": "playwright show-report", |
71 | 72 | "e2e:report:keep": "[ ! -f playwright-report-keep ] || mv playwright-report-keep playwright-report-keep-$(date +%Y%m%d_%H%MZ) && mv playwright-report playwright-report-keep && yarn e2e:report:keep:view", |
72 | 73 | "e2e:report:keep:view": "playwright show-report playwright-report-keep", |
73 | | - "e2e:docker:bash": "docker run --rm -p 9323:9323 -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.41.0-jammy /bin/bash", |
| 74 | + "e2e:docker:bash": "docker run --rm -p 9323:9323 -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.45.0-jammy /bin/bash", |
74 | 75 | "e2e:docker": "node -e \"fetch('http://localhost:3000').then(res => res.status === 200 ? console.log('Running e2e tests in Docker using base URL: http://localhost:3000') : Promise.reject()).catch(() => { console.error(`No server is listening at: http://localhost:3000. Run 'yarn start' or 'yarn preview' in another tab and try again.`); process.exit(1); } );\" && yarn e2e:docker:bash -c 'DOCKER=1 yarn test:e2e'", |
75 | 76 | "e2e:docker:prod": "node -e \"fetch('http://localhost:31313').then(res => res.status === 200 ? console.log('Running e2e tests in Docker using base URL: http://localhost:31313') : Promise.reject()).catch(() => {console.error(`No server is listening at: http://localhost:31313. Run 'yarn preview:prod' in another tab and try again.`); process.exit(1); });\" && yarn e2e:docker:bash -c 'DOCKER=1 yarn test:e2e:prod'", |
76 | 77 | "e2e:update-har": "UPDATE_HAR=1 yarn test:e2e --project=chromium tests/routing.spec.ts", |
|
0 commit comments