mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-23 09:15:13 +03: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');
|
|
}
|