Skip to content

Commit

Permalink
test: fix test error ( installing studio cli)
Browse files Browse the repository at this point in the history
  • Loading branch information
deltork committed Jan 6, 2025
1 parent caffc46 commit 7787efe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/end-to-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: |
git clone https://github.com/ReadAlongs/Studio
cd Studio
pip install -e . -r requirements.api.txt
pip install -e .[api]
./run-web-api.sh &
# wait for the API to be up
curl --retry 20 --retry-delay 1 --retry-all-errors http://localhost:8000/api/v1/langs
Expand Down
2 changes: 1 addition & 1 deletion packages/studio-web/tests/test-commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ export const defaultBeforeEach = async (page: Page, browserName: string) => {
);

await page.goto("/", { waitUntil: "load" });
disablePlausible(page);
await expect(
page.getByTestId("next-step"),
"Soundswallower model has loaded",
).not.toBeDisabled();
});
disablePlausible(page);
};

/**
Expand Down

0 comments on commit 7787efe

Please sign in to comment.