mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 01:41:59 +00:00
6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import { Page } from "@playwright/test";
|
|
|
|
|
|
export const clearLocalStorage = (page: Page) => {
|
|
return page.evaluate(`window.localStorage.clear()`);
|
|
} |