Skip to content

Commit 3da3165

Browse files
committed
Attempt to diagnose issue by removing new test command calls
1 parent 1a3b90f commit 3da3165

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

apps/vscode/src/test/quartoDoc.test.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,17 @@ suite("Quarto basics", () => {
2525
const doc = await vscode.workspace.openTextDocument(exampleWorkspaceOutPath("hello.qmd"));
2626
const editor = await vscode.window.showTextDocument(doc);
2727

28-
console.log('extension().isActive', extension().isActive);
29-
3028
await extension().activate();
29+
await wait(APPROX_TIME_TO_OPEN_VISUAL_EDITOR);
3130

3231
// manually confirm visual mode so dialogue pop-up doesn't show because dialogues cause test errors
3332
// and switch to visual editor
34-
await vscode.commands.executeCommand("quarto.test_setkVisualModeConfirmedTrue");
33+
// await vscode.commands.executeCommand("quarto.test_setkVisualModeConfirmedTrue");
3534
await wait(300); // It seems necessary to wait around 300ms for this command to be done.
3635
await vscode.commands.executeCommand("quarto.editInVisualMode");
3736
await wait(APPROX_TIME_TO_OPEN_VISUAL_EDITOR);
3837

39-
assert.ok(await vscode.commands.executeCommand("quarto.test_isInVisualEditor"));
38+
// assert.ok(await vscode.commands.executeCommand("quarto.test_isInVisualEditor"));
4039
});
4140
// Note: this test runs after the previous test, so `hello.qmd` has already been touched by the previous
4241
// test. That's okay for this test, but could cause issues if you expect a qmd to look how it
@@ -50,7 +49,7 @@ suite("Quarto basics", () => {
5049
const docTextBefore = doc.getText();
5150

5251
// switch to visual editor and back
53-
await vscode.commands.executeCommand("quarto.test_setkVisualModeConfirmedTrue");
52+
// await vscode.commands.executeCommand("quarto.test_setkVisualModeConfirmedTrue");
5453
await wait(300);
5554
await vscode.commands.executeCommand("quarto.editInVisualMode");
5655
await wait(APPROX_TIME_TO_OPEN_VISUAL_EDITOR);

0 commit comments

Comments
 (0)