We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b866e13 commit c7f3881Copy full SHA for c7f3881
test/component.spec.ts
@@ -22,6 +22,10 @@ describe('Components', async () => {
22
expect(await page.getByTestId('cannot-multiple-invisible').isVisible()).toBeFalsy()
23
expect(await page.getByTestId('cannot-multiple-visible').isVisible()).toBeTruthy()
24
25
+ expect(await page.getByTestId('bouncer-default-visible').isVisible()).toBeTruthy()
26
+ expect(await page.getByTestId('bouncer-default-can-invisible').isVisible()).toBeFalsy()
27
+ expect(await page.getByTestId('bouncer-default-cannot-invisible').isVisible()).toBeFalsy()
28
+
29
expect(await page.getByTestId('bouncer-can-visible').isVisible()).toBeTruthy()
30
expect(await page.getByTestId('bouncer-cannot-invisible').isVisible()).toBeFalsy()
31
0 commit comments