Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion injected/integration-test/pages.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ test.describe('Test integration pages', () => {
test('Test infra fallback', async ({ page }, testInfo) => {
await page.addInitScript(() => {
// This ensures that our fallback code applies and so we simulate other platforms than Chromium.
delete globalThis.navigation;
delete (/** @type {{ navigation?: unknown }} */ (globalThis).navigation);
});
await testPage(
page,
Expand Down
4 changes: 2 additions & 2 deletions injected/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
"@canvas/image-data": "^1.1.0",
"@duckduckgo/privacy-reference-tests": "github:duckduckgo/privacy-reference-tests#c2b49fe7ce4a75404c6a79e4dd1053710a9869ee",
"@fingerprintjs/fingerprintjs": "^5.2.0",
"@types/chrome": "^0.1.37",
"@types/chrome": "^0.1.40",
"@types/jasmine": "^6.0.0",
"@types/node": "^25.5.0",
"@types/node": "^25.6.0",
"@types/seedrandom": "^3.0.8",
"c8": "^11.0.0",
"fast-check": "^4.6.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const surrogates: Record<string, () => void>;
Loading
Loading