Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
robgruen committed Feb 2, 2025
1 parent de0b535 commit 10b5fdf
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions ts/packages/shell/test/simple.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {
getAppPath,
sendUserRequestAndWaitForCompletion,
getLaunchArgs,
sendUserRequestAndWaitForResponse,
startShell,
} from "./testHelper";
import { fileURLToPath } from "node:url";
Expand All @@ -32,10 +31,6 @@ test("startShell", { tag: "@smoke" }, async ({}) => {
await startShell();
});

test("startShell", { tag: "@smoke" }, async ({}) => {
await startShell();
});

test("why is the sky blue?", { tag: "@smoke" }, async ({}, testInfo) => {
console.log(`Running test '${testInfo.title}`);

Expand All @@ -51,7 +46,7 @@ test("why is the sky blue?", { tag: "@smoke" }, async ({}, testInfo) => {
expect(
msg.toLowerCase(),
"Chat agent didn't respond with the expected message.",
).toContain("scattering.");
).toContain("scattering");

// close the application
await exitApplication(mainWindow);
Expand Down

0 comments on commit 10b5fdf

Please sign in to comment.