test(pokedex): cover shared dex privacy

This commit is contained in:
Josh Creek
2026-09-14 14:25:22 +01:00
parent 7240376e00
commit 27274171fe
6 changed files with 311 additions and 1 deletions
+3 -1
View File
@@ -12,6 +12,7 @@ export type ScenarioState = {
lastMessage: string | null;
caughtEntryLabel: string | null;
legacyServiceWorkerRequested: boolean;
shareUrl: string | null;
};
type Fixtures = { state: ScenarioState; providerMock: void };
@@ -53,7 +54,8 @@ export const test = base.extend<Fixtures>({
lastResponseStatus: null,
lastMessage: null,
caughtEntryLabel: null,
legacyServiceWorkerRequested: false
legacyServiceWorkerRequested: false,
shareUrl: null
});
}
});