Fixes https://tracker.ceph.com/issues/66453
- `#rbdMirroring` checkbox is not found due to which both of these tests are failing on most of the Prs
- this is due to the pool helper function which checks for an existing app passed in parameter
- if app is not found, then mirroring checkbox remains hidden
Signed-off-by: Afreen Misbah <afreen23.git@gmail.com>
describe('audit logs respond to pool creation and deletion test', () => {
it('should create pool and check audit logs reacted', () => {
pools.navigateTo('create');
- pools.create(poolname, 8);
+ pools.create(poolname, 8, 'rbd');
pools.navigateTo();
pools.existTableCell(poolname, true);
logs.checkAuditForPoolFunction(poolname, 'create', hour, minute);
before(() => {
cy.login();
pools.navigateTo('create');
- pools.create(poolName, 8);
+ pools.create(poolName, 8, 'rbd');
pools.edit_pool_pg(poolName, 4, false);
});