Skip to content

chore: print page content on failed promise #9681

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Sep 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use less generic phrase
  • Loading branch information
mtojek committed Sep 14, 2023
commit 7ff41d41b11364a2bc7aa9157d052a1080df5cd2
4 changes: 2 additions & 2 deletions site/e2e/tests/webTerminal.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ test("web terminal", async ({ context, page }) => {
});

// Ensure that we can type in it
await terminal.keyboard.type("echo he${justabreak}llo");
await terminal.keyboard.type("echo he${justabreak}llo123456");
await terminal.keyboard.press("Enter");

// Check if "echo" command was executed
// try-catch is used temporarily to find the root cause: https://github.com/coder/coder/actions/runs/6176958762/job/16767089943
try {
await terminal.waitForSelector('div.xterm-rows div:text-matches("hello")', {
await terminal.waitForSelector('div.xterm-rows div:text-matches("hello123456")', {
state: "visible",
timeout: 10 * 1000,
});
Expand Down