Add client_ids filter to time entry export

This commit is contained in:
Gregor Vostrak
2026-02-02 01:57:40 +01:00
parent 73b4d66386
commit b2af9c6bf1
8 changed files with 125 additions and 34 deletions

View File

@@ -52,11 +52,7 @@ export async function createClient(page: Page, clientName: string) {
await expect(page.getByText(clientName)).toBeVisible();
}
export async function createProjectWithClient(
page: Page,
projectName: string,
clientName: string
) {
export async function createProjectWithClient(page: Page, projectName: string, clientName: string) {
await page.goto(PLAYWRIGHT_BASE_URL + '/projects');
await expect(page.getByRole('button', { name: 'Create Project' })).toBeVisible();
await page.getByRole('button', { name: 'Create Project' }).click();