@@ -27,35 +27,32 @@ describe('management user with vhosts permissions', function () {
2727 it ( 'can access overview tab' , async function ( ) {
2828 await overview . clickOnOverviewTab ( )
2929 await overview . waitForOverviewTab ( )
30- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
30+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
3131 } )
3232 it ( 'can access connections tab' , async function ( ) {
3333 await overview . clickOnConnectionsTab ( )
3434 await overview . waitForConnectionsTab ( )
35- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
35+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
3636 } )
3737 it ( 'can access channels tab' , async function ( ) {
3838 await overview . clickOnChannelsTab ( )
3939 await overview . waitForChannelsTab ( )
40- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
40+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
4141 } )
4242 it ( 'can access exchanges tab' , async function ( ) {
4343 await overview . clickOnExchangesTab ( )
4444 await overview . waitForExchangesTab ( )
45- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
45+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
4646 } )
4747 it ( 'can access queues and streams tab' , async function ( ) {
4848 await overview . clickOnQueuesTab ( )
4949 await overview . waitForQueuesTab ( )
50- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
50+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
5151 } )
5252 it ( 'can access limited options in admin tab' , async function ( ) {
53- console . log ( "before clickOnAdminTab" )
5453 await overview . clickOnAdminTab ( )
55- console . log ( "before waitForAdminTab" )
5654 await overview . waitForAdminTab ( )
57- console . log ( "after waitForAdminTab" )
58- assert . ok ( ! await overview . isPopupWarningDisplayed ( ) )
55+ assert . ok ( await overview . isPopupWarningNotDisplayed ( ) )
5956 } )
6057
6158 it ( 'cannot add/update user limits' , async function ( ) {
0 commit comments