16 lines
534 B
TypeScript
16 lines
534 B
TypeScript
![]() |
import { type Page } from '@playwright/test';
|
||
|
|
||
|
import { type ILibraryItem } from '../../src/features/library/backend/types';
|
||
|
import { BACKEND_URL } from './constants';
|
||
|
|
||
|
export const dataLibraryItems: ILibraryItem[] = [];
|
||
|
|
||
|
export async function setupLibrary(page: Page) {
|
||
|
await page.route(`${BACKEND_URL}/api/library/all`, async route => {
|
||
|
await route.fulfill({ json: dataLibraryItems });
|
||
|
});
|
||
|
await page.route(`${BACKEND_URL}/api/library/active`, async route => {
|
||
|
await route.fulfill({ json: dataLibraryItems });
|
||
|
});
|
||
|
}
|