We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd30bdd commit e06f4f5Copy full SHA for e06f4f5
airbyte-webapp-e2e-tests/cypress/pages/replicationPage.ts
@@ -214,7 +214,7 @@ export const checkSchemaChangesDetected = ({ breaking }: { breaking: boolean })
214
cy.get(schemaChangesDetectedBanner)
215
.invoke("attr", "class")
216
.should("match", breaking ? /\_breaking/ : /nonBreaking/);
217
- cy.get(schemaChangesBackdrop).should("exist");
+ cy.get(schemaChangesBackdrop).should(breaking ? "exist" : "not.exist");
218
};
219
220
export const checkSchemaChangesDetectedCleared = () => {
0 commit comments