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 b558781 commit b137b6eCopy full SHA for b137b6e
runner/builder/puppeteer.ts
@@ -23,7 +23,9 @@ export async function runAppInPuppeteer(
23
enableAutoCsp: boolean
24
) {
25
const runtimeErrors: string[] = [];
26
- let cspViolations: CspViolation[] = [];
+
27
+ // Undefined by default so it gets flagged correctly as `skipped` if there's no data.
28
+ let cspViolations: CspViolation[] | undefined;
29
let screenshotBase64Data: string | undefined;
30
let axeViolations: Result[] | undefined;
31
0 commit comments