Skip to content

Commit 59597a4

Browse files
committed
Fixes the name and double negation not null
1 parent 8876d89 commit 59597a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/test/feedback/ScreenshotButton.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ describe('ScreenshotButton', () => {
182182
});
183183

184184
await waitFor(() => {
185-
const takeScreenshotButtonAfterCapture = queryByText('Remove screenshot');
186-
expect(takeScreenshotButtonAfterCapture).not.toBeNull();
185+
const removeScreenshotButtonAfterCapture = queryByText('Remove screenshot');
186+
expect(removeScreenshotButtonAfterCapture).toBeTruthy();
187187
});
188188
});
189189

0 commit comments

Comments
 (0)