Remove admin SSR

This commit is contained in:
Aarni Halinen
2021-03-08 19:34:33 +02:00
parent 0caac53231
commit b60a5b53e0
14 changed files with 15 additions and 38 deletions
+3
View File
@@ -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 });