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 611b71e commit 40b69c5Copy full SHA for 40b69c5
test/parallel/test-inspector-dom-storage.js
@@ -1,4 +1,4 @@
1
-// Flags: --experimental-inspector-storage-key=node-inspector://default-dom-storage
+// Flags: --inspect=0 --experimental-inspector-storage-key=node-inspector://default-dom-storage
2
'use strict';
3
4
const common = require('../common');
@@ -20,9 +20,9 @@ async function test() {
20
},
21
})
22
.catch(
23
- common.mustCall((err) => {
+ (err) => {
24
assert.ok(err.message.includes('DOMStorage domain is not enabled'));
25
- })
+ }
26
);
27
28
await session.post('DOMStorage.enable');
0 commit comments