Remove admin SSR
This commit is contained in:
@@ -18,8 +18,6 @@ fixture`Event signup`.page(getSiteRoot())
|
||||
});
|
||||
|
||||
test("User signups to event from front page", async (t) => {
|
||||
// Wait 60s, so server has revalidated & rebuilt itself
|
||||
await t.wait(60000);
|
||||
const CardSelector = Selector("[data-e2e=\"event-card\"]").withText("title_fi").nth(0);
|
||||
|
||||
await t
|
||||
|
||||
@@ -154,3 +154,6 @@ export const generateTestEvent = async (formIds = [], jwt: string) => (
|
||||
tag_id: [1],
|
||||
}, jwt)
|
||||
);
|
||||
|
||||
export const sleep = async (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
|
||||
export const reloadPage = (t?: TestController) => ClientFunction(() => window.location.reload(), { boundTestRun: t });
|
||||
|
||||
Reference in New Issue
Block a user