mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-04 00:05:28 -05:00
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' });
|
|
}
|