Skip to content

Commit 7787efe

Browse files
committed
test: fix test error ( installing studio cli)
1 parent caffc46 commit 7787efe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/end-to-end-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
run: |
7373
git clone https://github.com/ReadAlongs/Studio
7474
cd Studio
75-
pip install -e . -r requirements.api.txt
75+
pip install -e .[api]
7676
./run-web-api.sh &
7777
# wait for the API to be up
7878
curl --retry 20 --retry-delay 1 --retry-all-errors http://localhost:8000/api/v1/langs

packages/studio-web/tests/test-commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ export const defaultBeforeEach = async (page: Page, browserName: string) => {
114114
);
115115

116116
await page.goto("/", { waitUntil: "load" });
117-
disablePlausible(page);
118117
await expect(
119118
page.getByTestId("next-step"),
120119
"Soundswallower model has loaded",
121120
).not.toBeDisabled();
122121
});
122+
disablePlausible(page);
123123
};
124124

125125
/**

0 commit comments

Comments
 (0)