mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 15:04:43 +00:00
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import axios from 'axios';
|
|
import playwrightConfig from '../../playwright.config';
|
|
|
|
export async function cleanupBackend() {
|
|
await axios.post(playwrightConfig.use!.baseURL + '/api/test/reset');
|
|
}
|