mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
14 lines
394 B
TypeScript
14 lines
394 B
TypeScript
import {test} from "@playwright/test";
|
|||
|
|
import fs from "fs";
|
||
|
|
import {LOCAL_STORAGE_PATH} from "./helpers/session";
|
||
|
|
|
||
|
|
test.describe(() => {
|
||
|
|
test.beforeAll(async () => {
|
||
|
|
if (fs.existsSync(LOCAL_STORAGE_PATH)) fs.unlinkSync(LOCAL_STORAGE_PATH);
|
||
|
|
fs.writeFileSync(LOCAL_STORAGE_PATH, JSON.stringify({}));
|
||
|
|
});
|
||
|
|
|
||
|
|
test("Prepare shared storage state", async () => {
|
||
|
|
});
|
||
|
|
});
|