You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
Fix: cypress findByTestId
and percySnapshotElement
do not work together (#10947)
* check for testid in percySnapshotElement * Update percy.ts --------- Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@ -47,8 +47,15 @@ Cypress.Commands.add("percySnapshotElement", { prevSubject: "element" }, (subjec
|
|||||||
// Await inline spinners to vanish
|
// Await inline spinners to vanish
|
||||||
cy.get(".mx_InlineSpinner", { log: false }).should("not.exist");
|
cy.get(".mx_InlineSpinner", { log: false }).should("not.exist");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let selector = subject.selector;
|
||||||
|
// cy.findByTestId sets the selector to `findByTestId(<testId>)`
|
||||||
|
// which is not usable as a scope
|
||||||
|
if (selector.startsWith("findByTestId")) {
|
||||||
|
selector = `[data-testid="${subject.attr("data-testid")}"]`;
|
||||||
|
}
|
||||||
cy.percySnapshot(name, {
|
cy.percySnapshot(name, {
|
||||||
domTransformation: (documentClone) => scope(documentClone, subject.selector),
|
domTransformation: (documentClone) => scope(documentClone, selector),
|
||||||
...options,
|
...options,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user