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 633801f commit b7cc090Copy full SHA for b7cc090
packages/e2e-tests/src/assert/drawerCommonExtendedAssert.ts
@@ -11,10 +11,11 @@ class DrawerCommonExtendedAssert {
11
}
12
13
async assertSeeDrawer(shouldSee: boolean) {
14
+ const visibilityMessage = shouldSee ? 'see' : 'not see';
15
await new CommonDrawerElements().drawerBody.waitForClickable({
16
reverse: !shouldSee,
17
timeout: 2000,
- timeoutMsg: 'expected to not see drawer in 2s'
18
+ timeoutMsg: `expected to ${visibilityMessage} drawer in 2s`
19
});
20
21
0 commit comments