mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-22 11:06:41 -04:00
9 lines
370 B
TypeScript
9 lines
370 B
TypeScript
import { test as setup } from '@playwright/test';
|
|
import { restartAppAndWait } from '../helpers/test-lifecycle';
|
|
import { indexerMock, liveRadarr, liveSonarr } from '../helpers/live-arr';
|
|
|
|
setup('reset app for live-arr specs', async () => {
|
|
await Promise.all([indexerMock.waitReady(), liveSonarr.waitReady(), liveRadarr.waitReady()]);
|
|
await restartAppAndWait();
|
|
});
|