mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
5d0602179f
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
import { Page } from '@playwright/test';
|
|
|
|
export async function signout(page: Page) {
|
|
await page.context().clearCookies({ name: 'jwt_access_token' });
|
|
}
|