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 89354d2 commit 7f25f1eCopy full SHA for 7f25f1e
test/parallel/test-inspector-dom-storage.js
@@ -19,7 +19,10 @@ async function test() {
19
pathToFileURL(path.join(process.cwd(), 'localstorage.db')).href;
20
21
const { storageKey } = await session.post('Storage.getStorageKey');
22
- assert.strictEqual(storageKey, localStorageFileUrl);
+ assert.strictEqual(
23
+ storageKey.toLowerCase(),
24
+ localStorageFileUrl.toLowerCase()
25
+ );
26
27
await checkStorage(true);
28
await checkStorage(false);
0 commit comments