Skip to content

Commit 7f25f1e

Browse files
committed
fix test
1 parent 89354d2 commit 7f25f1e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/parallel/test-inspector-dom-storage.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ async function test() {
1919
pathToFileURL(path.join(process.cwd(), 'localstorage.db')).href;
2020

2121
const { storageKey } = await session.post('Storage.getStorageKey');
22-
assert.strictEqual(storageKey, localStorageFileUrl);
22+
assert.strictEqual(
23+
storageKey.toLowerCase(),
24+
localStorageFileUrl.toLowerCase()
25+
);
2326

2427
await checkStorage(true);
2528
await checkStorage(false);

0 commit comments

Comments
 (0)