Skip to content

Commit 12f9222

Browse files
Another clean up
1 parent a55f662 commit 12f9222

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

packages/common/src/ide/normalized/NormalizedIDE.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ export class NormalizedIDE extends PassthroughIDE {
4141
{ wordSeparators: ["_", "-"] },
4242
true,
4343
);
44-
this.configuration.mockConfiguration("decorationDebounceDelayMs", 0);
4544
this.configuration.mockConfiguration("experimental", {
4645
hatStability: this.configuration.getOwnConfiguration(
4746
"experimental.hatStability",

packages/cursorless-vscode-e2e/src/suite/scopeVisualizer/scopeVisualizer.vscode.test.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { asyncSafety } from "@cursorless/common";
2+
import { getCursorlessApi } from "@cursorless/vscode-common";
23
import { commands } from "vscode";
34
import { endToEndTestSetup } from "../../endToEndTestSetup";
45
import { runBasicMultilineContentTest } from "./runBasicMultilineContentTest";
@@ -9,6 +10,11 @@ import { runUpdateTest } from "./runUpdateTest";
910
suite("scope visualizer", function () {
1011
endToEndTestSetup(this);
1112

13+
suiteSetup(async () => {
14+
const { ide } = (await getCursorlessApi()).testHelpers!;
15+
ide.configuration.mockConfiguration("decorationDebounceDelayMs", 0);
16+
});
17+
1218
teardown(() => commands.executeCommand("cursorless.hideScopeVisualizer"));
1319

1420
test(

0 commit comments

Comments
 (0)