|
1 | 1 | export const skipTests: string[][] = [
|
2 |
| - ['library/browsercontext-cookies.spec.ts', 'should get a cookie @smoke'], |
3 |
| - ['library/browsercontext-credentials.spec.ts', 'should work with correct credentials @smoke'], |
4 |
| - ['library/browsercontext-device.spec.ts', 'device', 'should work @smoke'], |
5 |
| - ['library/capabilities.spec.ts', 'should play webm video @smoke'], |
6 |
| - ['library/capabilities.spec.ts', 'should support webgl @smoke'], |
7 |
| - ['library/capabilities.spec.ts', 'should support webgl 2 @smoke'], |
8 |
| - ['library/capabilities.spec.ts', 'should play audio @smoke'], |
9 |
| - ['page/frame-hierarchy.spec.ts', 'should handle nested frames @smoke'], |
10 |
| - ['page/page-drag.spec.ts', 'Drag and drop', 'should work @smoke'], |
11 |
| - ['page/page-event-popup.spec.ts', 'should work @smoke'], |
12 |
| - ['page/page-history.spec.ts', 'page.goBack should work @smoke'], |
| 2 | + ['library/har.spec.ts', 'should include content @smoke'], |
| 3 | + ['page/wheel.spec.ts', 'should dispatch wheel events @smoke'], |
| 4 | + ['page/wheel.spec.ts', 'should dispatch wheel events after popup was opened @smoke'], |
| 5 | + ['page/workers.spec.ts', 'Page.workers @smoke'], |
13 | 6 | ];
|
14 | 7 |
|
15 | 8 | export const skipErrorMessages: Array<string | RegExp> = [
|
16 | 9 | 'Cloudflare Workers does not support',
|
17 | 10 | '__filename is not defined',
|
18 | 11 | '__dirname is not defined',
|
19 | 12 | '\(\) => {}', // Cloudflare serializes empty arrow function with new lines
|
20 |
| - 'Expected substring: "Mozilla"', |
21 | 13 | 'createHttp2Server is not defined',
|
22 | 14 | /\[unenv\] .* is not implemented yet!/,
|
| 15 | + /Received string:\s+"Cloudflare-Workers"/, |
| 16 | + '.rendering.cfdata.org', |
23 | 17 | ];
|
0 commit comments