Skip to content

Commit efbe321

Browse files
committed
CCM-8308: fix broken await
1 parent a8bbabb commit efbe321

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test-team/template-mgmt-component-tests/template-mgmt-logout-warning.component.modal.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test.describe('Logout warning', () => {
3636

3737
await dialog.getByRole('button', { name: 'Stay signed in' }).click();
3838

39-
expect(dialog).not.toBeVisible();
39+
await expect(dialog).not.toBeVisible();
4040
});
4141

4242
test('logout warning should pop up and close after user clicks "Sign out"', async ({

0 commit comments

Comments
 (0)