Skip to content

Commit de83010

Browse files
committed
Revert "Setup VRT (#3894)"
This reverts commit fbc541e.
1 parent e71109b commit de83010

File tree

8 files changed

+4
-139
lines changed

8 files changed

+4
-139
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
node-version: 25
1616
check-latest: true
17-
- name: Install dependencies
17+
- name: npm install
1818
run: npm i
1919
- name: Biome
2020
run: node --run biome:ci
@@ -33,8 +33,6 @@ jobs:
3333
- name: Test
3434
run: node --run test
3535
timeout-minutes: 4
36-
- name: Visual regression test
37-
run: node --run visual
3836
- name: Upload coverage
3937
uses: codecov/codecov-action@v5
4038
with:

.github/workflows/update-screenshots.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/lib
55
/node_modules
66
/package-lock.json
7-
test/browser/**/__screenshots__
7+
__screenshots__
88

99
npm-debug.log
1010
**.orig

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@
3535
"preview": "vite preview",
3636
"build:website": "vite build",
3737
"build": "rolldown -c",
38-
"test": "vitest run --project browser --project node --coverage.reportsDirectory='./coverage/test'",
39-
"test:watch": "vitest watch --project browser --project node",
40-
"visual": "vitest run --project visual --coverage.reportsDirectory='./coverage/visual'",
41-
"visual:update": "vitest run --project visual --update",
38+
"test": "vitest run",
39+
"test:watch": "vitest watch",
4240
"format": "biome format --write",
4341
"check": "biome check --error-on-warnings",
4442
"biome:ci": "biome ci --error-on-warnings",
Binary file not shown.
Binary file not shown.

test/visual/basicGrid.test.tsx

Lines changed: 0 additions & 54 deletions
This file was deleted.

vite.config.ts

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -137,26 +137,6 @@ export default defineConfig(
137137
setupFiles: ['test/setupBrowser.ts']
138138
}
139139
},
140-
{
141-
extends: true,
142-
test: {
143-
name: 'visual',
144-
include: ['test/visual/*.test.*'],
145-
browser: {
146-
enabled: true,
147-
provider: playwright({
148-
contextOptions: {
149-
viewport
150-
}
151-
}),
152-
instances: [{ browser: 'chromium' }, { browser: 'firefox' }],
153-
viewport,
154-
headless: true,
155-
screenshotFailures: false
156-
},
157-
setupFiles: ['test/setupBrowser.ts']
158-
}
159-
},
160140
{
161141
extends: true,
162142
test: {

0 commit comments

Comments
 (0)