Skip to content

Commit a3694d6

Browse files
committed
test: skip extension installation for now
1 parent 4903dbe commit a3694d6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

apps/vscode/src/test/formatting.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ import { openAndShowTextDocument, wait, WORKSPACE_PATH } from "./test-utils";
55

66
suite("Code Block Formatting", function () {
77
test("Format Python code block", async function () {
8+
this.timeout(30000); // Increase timeout to 30 seconds for extension installation and formatting
9+
810
// Ensure Black formatter extension is installed
9-
await vscode.commands.executeCommand("workbench.extensions.installExtension", "ms-python.black-formatter");
10-
await wait(1000);
11+
// await vscode.commands.executeCommand("workbench.extensions.installExtension", "ms-python.black-formatter");
12+
// await wait(1000);
1113

1214
const { doc, editor } = await openAndShowTextDocument("format-python.qmd");
1315

0 commit comments

Comments
 (0)