Skip to content

Commit 408a3b4

Browse files
committed
fix: incorrect lighthouse flag
Fixes that the condition for skipping Lighthouse didn't account for undefined.
1 parent 8a401b3 commit 408a3b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runner/orchestration/serve-testing-worker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export async function serveAndTestApp(
3939
enableAutoCsp: !!config.enableAutoCsp,
4040
includeAxeTesting: config.skipAxeTesting === false,
4141
takeScreenshots: config.skipScreenshots === false,
42-
includeLighthouseData: config.skipLighthouse === false,
42+
includeLighthouseData: config.skipLighthouse !== true,
4343
userJourneyAgentTaskInput,
4444
};
4545

0 commit comments

Comments
 (0)