mirror of
https://github.com/Discreetly/frontend.git
synced 2026-01-08 20:38:04 -05:00
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import type { Page } from '@playwright/test';
|
|
|
|
export async function getLocalStorage(page: Page) {
|
|
const state = await page.context().storageState();
|
|
return state.origins[0].localStorage;
|
|
}
|