Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
geido committed Aug 16, 2021
1 parent 6ea4b14 commit acbe60f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ test('Open Omnibar with ctrl + k with featureflag enabled', () => {
});
expect(
screen.queryByPlaceholderText('Search all dashboards'),
).not.toBeVisible();
).not.toBeInTheDocument();
});

test('Open Omnibar with Command + k with featureflag enabled', () => {
Expand Down Expand Up @@ -112,7 +112,7 @@ test('Open Omnibar with Command + k with featureflag enabled', () => {
});
expect(
screen.queryByPlaceholderText('Search all dashboards'),
).not.toBeVisible();
).not.toBeInTheDocument();
});

test('Open Omnibar with Cmd/Ctrl-K and close with ESC', () => {
Expand Down Expand Up @@ -145,5 +145,5 @@ test('Open Omnibar with Cmd/Ctrl-K and close with ESC', () => {
});
expect(
screen.queryByPlaceholderText('Search all dashboards'),
).not.toBeVisible();
).not.toBeInTheDocument();
});

0 comments on commit acbe60f

Please sign in to comment.