Skip to content

Commit 4c438c4

Browse files
authored
update tests for new docs url (#1011)
# why old docs url is causing our tests to fail # what changed changed url to use the new docs first-steps url # test plan
1 parent fc063db commit 4c438c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

evals/deterministic/tests/browserbase/sessions.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ test.describe("Browserbase Sessions", () => {
2323
});
2424
await bigStagehand.init();
2525
await bigStagehand.page.goto(
26-
"https://docs.stagehand.dev/get_started/introduction",
26+
"https://docs.stagehand.dev/first-steps/introduction",
2727
);
2828
sessionId = bigStagehand.browserbaseSessionID;
2929
if (!sessionId) {
@@ -45,7 +45,7 @@ test.describe("Browserbase Sessions", () => {
4545
const page = stagehand.page;
4646

4747
expect(page.url()).toBe(
48-
"https://docs.stagehand.dev/get_started/introduction",
48+
"https://docs.stagehand.dev/first-steps/introduction",
4949
);
5050
});
5151
test("resumes a session via CDP URL", async () => {
@@ -63,7 +63,7 @@ test.describe("Browserbase Sessions", () => {
6363
const page = stagehand.page;
6464

6565
expect(page.url()).toBe(
66-
"https://docs.stagehand.dev/get_started/introduction",
66+
"https://docs.stagehand.dev/first-steps/introduction",
6767
);
6868
});
6969
});

0 commit comments

Comments
 (0)