feat(e2e): onboarding process

This commit is contained in:
Ahmed Bouhuolia
2023-06-23 14:32:36 +02:00
parent 44fce6f33e
commit b35d22d3b3
6 changed files with 116 additions and 52 deletions

6
e2e/_utils.ts Normal file
View File

@@ -0,0 +1,6 @@
import { Page } from "@playwright/test";
export const clearLocalStorage = (page: Page) => {
return page.evaluate(`window.localStorage.clear()`);
}