Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunal-kankriya committed Jul 3, 2024
1 parent 507c92a commit d2163a3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions smoke-test/tests/cypress/cypress/e2e/domains/nested_domains.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,18 +165,18 @@ describe("Verify nested domains test functionalities", () => {
});

it("verify Move domain root level to parent level", () => {
cy.waitTextVisible(domainName)
cy.waitTextVisible(domainName);
moveDomaintoRootLevel();
cy.waitTextVisible("Moved Domain!")
cy.ensureTextNotPresent('Moved Domain!')
cy.waitTextVisible("Moved Domain!");
cy.ensureTextNotPresent('Moved Domain!');
cy.goToDomainList();
cy.waitTextVisible("1 sub-domain");
})
});

it("Verify Move domain parent level to root level", () => {
moveDomaintoParent();
cy.waitTextVisible("Moved Domain!");
cy.ensureTextNotPresent('Moved Domain!')
cy.ensureTextNotPresent('Moved Domain!');
cy.goToDomainList();
cy.waitTextVisible(domainName);
});
Expand Down

0 comments on commit d2163a3

Please sign in to comment.