We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4f5c1b commit 355e396Copy full SHA for 355e396
packages/web/vitest.config.ts
@@ -54,19 +54,29 @@ const config: UserConfigExport = {
54
*/
55
isolate: true,
56
provider: 'playwright',
57
- headless: false,
+ headless: true,
58
instances: [
59
- {
60
- browser: 'chromium'
61
- }
+ // {
+ // browser: 'chromium'
+ // },
62
// {
63
// browser: 'firefox'
64
// }
65
// This requires some additional work to get all tests passing
66
67
// browser: 'webkit'
68
69
- ]
+ ],
70
+ // Disable private browsing mode for WebKit
71
+ // This allows persistent storage (IndexedDB, localStorage, etc.) to work properly
72
+ providerOptions: {
73
+ webkit: {
74
+ launch: {
75
+ // WebKit-specific launch options
76
+ },
77
+ context: {}
78
+ }
79
80
}
81
82
};
0 commit comments