Failing integration test: vscode API - globalState / workspaceState (fix #208134) (#208756)

This commit is contained in:
Benjamin Pasero
2024-03-26 07:53:08 +01:00
committed by GitHub
parent c972b16a33
commit 099c39eb5b

View File

@@ -36,7 +36,7 @@ suite('vscode API - globalState / workspaceState', () => {
await state.update('state.test.get', undefined);
keys = state.keys();
assert.strictEqual(keys.length, 0);
assert.strictEqual(keys.length, 0, `Unexpected keys: ${JSON.stringify(keys)}`);
res = state.get('state.test.get', 'default');
assert.strictEqual(res, 'default');