Skip to content

Commit 3d0b482

Browse files
committed
Update Playwright configuration for Windows and add snapshot files for events, home, speakers, and sponsors pages
1 parent 791bced commit 3d0b482

43 files changed

Lines changed: 28 additions & 5 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/jekyll.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ concurrency:
3232
cancel-in-progress: false
3333

3434
jobs:
35-
# Test job - runs Playwright tests
35+
# Test job - runs Playwright tests on Windows (matches local dev environment)
3636
test:
3737
timeout-minutes: 60
38-
runs-on: ubuntu-latest
38+
runs-on: windows-latest
3939
steps:
4040
- name: Checkout
4141
uses: actions/checkout@v4

.vscode/mcp.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"servers": {
3+
"io.github.github/github-mcp-server": {
4+
"type": "stdio",
5+
"command": "docker",
6+
"args": [
7+
"run",
8+
"-i",
9+
"--rm",
10+
"-e",
11+
"GITHUB_PERSONAL_ACCESS_TOKEN=${input:token}",
12+
"ghcr.io/github/github-mcp-server:0.28.1"
13+
],
14+
"gallery": "https://api.mcp.github.com",
15+
"version": "0.28.1"
16+
}
17+
},
18+
"inputs": [
19+
{
20+
"id": "token",
21+
"type": "promptString",
22+
"description": "",
23+
"password": true
24+
}
25+
]
26+
}

playwright.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ export default defineConfig({
2929
screenshot: 'only-on-failure',
3030
},
3131

32-
/* Platform-agnostic snapshot paths (no OS suffix) */
33-
snapshotPathTemplate: '{testDir}/{testFileDir}/{testFileName}-snapshots/{arg}{ext}',
34-
3532
/* Configure projects for major browsers */
3633
projects: [
3734
{

tests/all-pages.spec.ts-snapshots/all-events-structure.txt renamed to tests/all-pages.spec.ts-snapshots/all-events-structure-chromium-win32.txt

File renamed without changes.

tests/all-pages.spec.ts-snapshots/all-home-structure.txt renamed to tests/all-pages.spec.ts-snapshots/all-home-structure-chromium-win32.txt

File renamed without changes.

tests/all-pages.spec.ts-snapshots/all-speakers-structure.txt renamed to tests/all-pages.spec.ts-snapshots/all-speakers-structure-chromium-win32.txt

File renamed without changes.

tests/all-pages.spec.ts-snapshots/all-sponsors-structure.txt renamed to tests/all-pages.spec.ts-snapshots/all-sponsors-structure-chromium-win32.txt

File renamed without changes.

tests/events.spec.ts-snapshots/event-2024-12-19.png renamed to tests/events.spec.ts-snapshots/event-2024-12-19-chromium-win32.png

File renamed without changes.

tests/events.spec.ts-snapshots/event-2025-01-14.png renamed to tests/events.spec.ts-snapshots/event-2025-01-14-chromium-win32.png

File renamed without changes.

tests/events.spec.ts-snapshots/event-2025-12-16.png renamed to tests/events.spec.ts-snapshots/event-2025-12-16-chromium-win32.png

File renamed without changes.

0 commit comments

Comments
 (0)