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 19be6a8 commit 9197bdeCopy full SHA for 9197bde
test/parallel/test-inspector-dom-storage.js
@@ -3,16 +3,16 @@
3
4
const common = require('../common');
5
const assert = require('assert');
6
+common.skipIfInspectorDisabled();
7
const { DOMStorage, Session } = require('node:inspector/promises');
8
-common.skipIfInspectorDisabled();
9
10
async function test() {
11
const session = new Session();
12
await session.connect();
13
14
// Check disabled before enable
15
- session
+ await session
16
.post('DOMStorage.getDOMStorageItems', {
17
storageId: {
18
isLocalStorage: true,
0 commit comments