Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

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
test(web-host): fix e2e tests - add tee in list-commands
  • Loading branch information
topheman committed Aug 20, 2025
commit 92e3d49952f40ef541e9aba0f2cfb2221b63d856
2 changes: 1 addition & 1 deletion packages/web-host/tests/repl-loading.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test("repl logic should have loaded", async ({ page }) => {
});

test("plugins should have loaded under their names", async ({ page }) => {
const pluginNames = ["echo", "weather", "greet", "ls", "cat", "echoc"];
const pluginNames = ["echo", "weather", "greet", "ls", "cat", "echoc", "tee"];
await page.goto("/#repl");
for (const pluginName of pluginNames) {
await expect(
Expand Down
1 change: 1 addition & 0 deletions packages/web-host/tests/repl-logic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ help reserved
list-commands reserved
ls plugin
man reserved
tee plugin
weather plugin`,
);
});
Expand Down