Skip to content

Commit 9f38cdf

Browse files
committed
fix: ignore some tools
ie /camera-recorder
1 parent 720c874 commit 9f38cdf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/tools/all-tools.e2e.spec.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { expect, test } from '@playwright/test';
22

3+
const ignoredHrefs = new Set(['/camera-recorder']);
4+
35
test.describe('IT Tool', () => {
46
test('Loads all tools correctly', async ({ page }) => {
57
test.slow();
@@ -26,6 +28,9 @@ test.describe('IT Tool', () => {
2628
});
2729

2830
for (const toolHref of allTools) {
31+
if (ignoredHrefs.has(toolHref)) {
32+
continue;
33+
}
2934
await test.step(toolHref, async () => {
3035
errors.splice(0, errors.length);
3136

0 commit comments

Comments
 (0)