Skip to content

Commit 40b69c5

Browse files
committed
fix test
1 parent 611b71e commit 40b69c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Flags: --experimental-inspector-storage-key=node-inspector://default-dom-storage
1+
// Flags: --inspect=0 --experimental-inspector-storage-key=node-inspector://default-dom-storage
22
'use strict';
33

44
const common = require('../common');
@@ -20,9 +20,9 @@ async function test() {
2020
},
2121
})
2222
.catch(
23-
common.mustCall((err) => {
23+
(err) => {
2424
assert.ok(err.message.includes('DOMStorage domain is not enabled'));
25-
})
25+
}
2626
);
2727

2828
await session.post('DOMStorage.enable');

0 commit comments

Comments
 (0)