@@ -27,35 +27,32 @@ describe('management user with vhosts permissions', function () {
27
27
it ( 'can access overview tab' , async function ( ) {
28
28
await overview . clickOnOverviewTab ( )
29
29
await overview . waitForOverviewTab ( )
30
- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
30
+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
31
31
} )
32
32
it ( 'can access connections tab' , async function ( ) {
33
33
await overview . clickOnConnectionsTab ( )
34
34
await overview . waitForConnectionsTab ( )
35
- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
35
+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
36
36
} )
37
37
it ( 'can access channels tab' , async function ( ) {
38
38
await overview . clickOnChannelsTab ( )
39
39
await overview . waitForChannelsTab ( )
40
- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
40
+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
41
41
} )
42
42
it ( 'can access exchanges tab' , async function ( ) {
43
43
await overview . clickOnExchangesTab ( )
44
44
await overview . waitForExchangesTab ( )
45
- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
45
+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
46
46
} )
47
47
it ( 'can access queues and streams tab' , async function ( ) {
48
48
await overview . clickOnQueuesTab ( )
49
49
await overview . waitForQueuesTab ( )
50
- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
50
+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
51
51
} )
52
52
it ( 'can access limited options in admin tab' , async function ( ) {
53
- console . log ( "before clickOnAdminTab" )
54
53
await overview . clickOnAdminTab ( )
55
- console . log ( "before waitForAdminTab" )
56
54
await overview . waitForAdminTab ( )
57
- console . log ( "after waitForAdminTab" )
58
- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
55
+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
59
56
} )
60
57
61
58
it ( 'cannot add/update user limits' , async function ( ) {
0 commit comments