Skip to content

Commit 4d7558d

Browse files
style: auto-fix formatting
1 parent 30f10ce commit 4d7558d

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

showcase/integrations/ms-agent-dotnet/tests/e2e/gen-ui-interrupt.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ test.describe("Gen UI via useInterrupt (inline time picker)", () => {
123123
'[data-testid="copilot-assistant-message"]',
124124
);
125125
await expect(
126-
assistantMessages.filter({ hasText: /Denied.*Alice|not scheduled/i }).first(),
126+
assistantMessages
127+
.filter({ hasText: /Denied.*Alice|not scheduled/i })
128+
.first(),
127129
).toBeVisible({
128130
timeout: 45_000,
129131
});

showcase/integrations/ms-agent-dotnet/tests/e2e/hitl-in-chat.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ test.describe("HITL in chat — booking flow", () => {
8686
'[data-testid="copilot-assistant-message"]',
8787
);
8888
await expect(
89-
assistantMessages.filter({ hasText: /Denied.*Alice|not booked/i }).first(),
89+
assistantMessages
90+
.filter({ hasText: /Denied.*Alice|not booked/i })
91+
.first(),
9092
).toBeVisible({ timeout: 30000 });
9193
await expect(
9294
assistantMessages.filter({ hasText: /Booked.*Alice/i }),

showcase/integrations/ms-agent-dotnet/tests/e2e/interrupt-headless.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ test.describe("Interrupt Headless", () => {
99
page,
1010
}) => {
1111
const input = page.getByPlaceholder("Type a message");
12-
await input.fill("Book an intro call with the sales team to discuss pricing.");
12+
await input.fill(
13+
"Book an intro call with the sales team to discuss pricing.",
14+
);
1315
await input.press("Enter");
1416

1517
const popup = page.locator('[data-testid="interrupt-headless-popup"]');

0 commit comments

Comments
 (0)