We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba49510 commit 3589531Copy full SHA for 3589531
2 files changed
playwright.config.ts
@@ -146,6 +146,22 @@ export default defineConfig({
146
},
147
148
149
+ // Blog Screenshots - captures key UI states for blog posts and documentation
150
+ {
151
+ name: 'screenshots',
152
+ testMatch: /tests\/screenshots\/.*\.spec\.ts/,
153
+ use: {
154
+ ...devices['Desktop Chrome'],
155
+ viewport: VIEWPORTS.laptop,
156
+ video: 'off',
157
+ screenshot: 'off', // manual screenshots only — no auto-capture
158
+ launchOptions: {
159
+ slowMo: 150, // slow down interactions so UI fully settles before capture
160
+ },
161
162
+ // No setup dependency — auth is handled inline per screenshot group
163
164
+
165
/* Mobile viewports (optional - uncomment to enable) */
166
// {
167
// name: 'Mobile Chrome',
0 commit comments