Skip to content

Commit 6ae56e9

Browse files
committed
mastra local
1 parent f935650 commit 6ae56e9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

typescript-sdk/apps/dojo/e2e/tests/mastraAgentLocalTests/agenticChatPage.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ test("[MastraAgentLocal] Agentic Chat sends and receives a message", async ({
1111
}) => {
1212
await retryOnAIFailure(async () => {
1313
await page.goto(
14-
"https://ag-ui-dojo-nine.vercel.app/mastra-agent-local/feature/agentic_chat"
14+
"/mastra-agent-local/feature/agentic_chat"
1515
);
1616

1717
const chat = new AgenticChatPage(page);
@@ -31,7 +31,7 @@ test("[MastraAgentLocal] Agentic Chat changes background on message and reset",
3131
}) => {
3232
await retryOnAIFailure(async () => {
3333
await page.goto(
34-
"https://ag-ui-dojo-nine.vercel.app/mastra-agent-local/feature/agentic_chat"
34+
"/mastra-agent-local/feature/agentic_chat"
3535
);
3636

3737
const chat = new AgenticChatPage(page);
@@ -79,7 +79,7 @@ test("[MastraAgentLocal] Agentic Chat retains memory of user messages during a c
7979
}) => {
8080
await retryOnAIFailure(async () => {
8181
await page.goto(
82-
"https://ag-ui-dojo-nine.vercel.app/mastra-agent-local/feature/agentic_chat"
82+
"/mastra-agent-local/feature/agentic_chat"
8383
);
8484

8585
const chat = new AgenticChatPage(page);

typescript-sdk/apps/dojo/e2e/tests/mastraAgentLocalTests/sharedStatePage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test.describe("Shared State Feature", () => {
99

1010
// Update URL to new domain
1111
await page.goto(
12-
"https://ag-ui-dojo-nine.vercel.app/mastra-agent-local/feature/shared_state"
12+
"/mastra-agent-local/feature/shared_state"
1313
);
1414

1515
await sharedStateAgent.openChat();
@@ -27,7 +27,7 @@ test.describe("Shared State Feature", () => {
2727
const sharedStateAgent = new SharedStatePage(page);
2828

2929
await page.goto(
30-
"https://ag-ui-dojo-nine.vercel.app/mastra-agent-local/feature/shared_state"
30+
"/mastra-agent-local/feature/shared_state"
3131
);
3232

3333
await sharedStateAgent.openChat();

typescript-sdk/apps/dojo/e2e/tests/mastraAgentLocalTests/toolBasedGenUIPage.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { test, expect } from "@playwright/test";
22
import { ToolBaseGenUIPage } from "../../pages/mastraAgentLocalPages/ToolBaseGenUIPage";
33

44
const pageURL =
5-
"https://ag-ui-dojo-nine.vercel.app/mastra-agent-local/feature/tool_based_generative_ui";
5+
"/mastra-agent-local/feature/tool_based_generative_ui";
66

77
test('[Mastra Agent Local] Haiku generation and display verification', async ({
88
page,

0 commit comments

Comments
 (0)