Skip to content

Commit

Permalink
Merge pull request #9100 from weseek/support/153544-add-playwright-te…
Browse files Browse the repository at this point in the history
…st-for-data-transfer

supoort: Add Playwright test for data transfer
  • Loading branch information
miya authored Sep 11, 2024
2 parents 1d54c77 + 6a66a81 commit e25be03
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/app/playwright/40-admin/access-to-admin-page.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ test('admin/export is successfully loaded', async({ page }) => {
await expect(page.getByTestId('admin-export-archive-data')).toBeVisible();
});

test('admin/data-transfer is successfully loaded', async({ page }) => {
await page.goto('/admin/data-transfer');

await expect(page.getByTestId('admin-export-archive-data')).toBeVisible();
});

test('admin/notification is successfully loaded', async({ page }) => {
await page.goto('/admin/notification');

Expand Down

0 comments on commit e25be03

Please sign in to comment.