mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-15 06:48:54 -04:00
8 lines
299 B
TypeScript
8 lines
299 B
TypeScript
import { test as setup } from '@playwright/test';
|
|
import { restartAppAndWait } from '../helpers/test-lifecycle';
|
|
|
|
setup('reset app for account specs', async () => {
|
|
// Account specs include OIDC config CRUD which expects OIDC to be enabled.
|
|
await restartAppAndWait({ configureOidc: true });
|
|
});
|