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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,11 @@ jobs:
with:
node-version: 24
cache: 'npm'
cache-dependency-path: ./tests/end-to-end/package-lock.json
cache-dependency-path: ./package-lock.json
- run: sudo apt-get update && sudo apt-get install -y unixodbc-dev
- run: npm ci && npx playwright install --with-deps --only-shell chromium
- run: npm ci
working-directory: .
- run: npx playwright install --with-deps --only-shell chromium
# The browser tests exercise the official site, but they do not need a
# separate Rust build. Reuse the binary compiled and tested above.
- name: Download Linux binary
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ xbed.sql
node_modules/
sqlpage/sqlpage.db
tests_uploads/
/test-results/
/playwright-report/
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ cargo run
In a separate terminal, run the tests:

```bash
cd tests/end-to-end
npm install
cd tests/end-to-end
npx playwright install chromium
npm run test
```
Expand Down
95 changes: 95 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.5.4"
}
},
"workspaces": [
"tests/end-to-end"
]
}
97 changes: 0 additions & 97 deletions tests/end-to-end/package-lock.json

This file was deleted.