Cleanup Cypress config and commands

This commit is contained in:
Felipe Knorr Kuhn
2021-10-27 20:49:49 -07:00
parent 5139ffb4df
commit 5dab44e6c4
2 changed files with 1 additions and 9 deletions

View File

@@ -56,13 +56,6 @@ const codes = {
ArrowDown: 40
}
Cypress.Commands.add("getBaseModule", () => {
return cy.task("getBaseModule").then((baseModule) => {
console.log(baseModule);
return baseModule;
});
});
Cypress.Commands.add('waitForSkeletonGone', () => {
cy.waitUntil(() => {
return Cypress.$('.skeleton-loader').length === 0;