fix: remediate branch review findings

This commit is contained in:
Josh Creek
2026-09-14 11:47:58 +01:00
parent 4af33709a3
commit 86f1c21e4d
38 changed files with 65833 additions and 58545 deletions
+3 -1
View File
@@ -11,6 +11,7 @@ export type ScenarioState = {
lastResponseStatus: number | null;
lastMessage: string | null;
caughtEntryLabel: string | null;
legacyServiceWorkerRequested: boolean;
};
type Fixtures = { state: ScenarioState; providerMock: void };
@@ -51,7 +52,8 @@ export const test = base.extend<Fixtures>({
entries: [],
lastResponseStatus: null,
lastMessage: null,
caughtEntryLabel: null
caughtEntryLabel: null,
legacyServiceWorkerRequested: false
});
}
});