Skip to content

Commit b782654

Browse files
committed
Minor fix on test
1 parent 7e2fdfa commit b782654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/v2/admin_settings.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ test('Show the admin settings page', async ({ page }) => {
55
await test.step('Open the admin settings page', async () => {
66
await page.goto('/v2/admin/settings');
77
await waitPageLoading(page);
8-
await expect(page.getByText('FRACTAL_TASKS_DIR')).toBeVisible();
8+
await expect(page.getByRole('cell', { name: 'FRACTAL_TASKS_DIR', exact: true })).toBeVisible();
99
await expect(page.getByText('***')).not.toBeVisible();
1010
});
1111

0 commit comments

Comments
 (0)