-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allure-cypress : getting error - 'Converting circular structure to JSON' #1070
Comments
Presumably, we're trying to stringify too much here:
|
Hi, I'm encountering the same issue.
|
@perrsikk thanks for the info |
I am also having this issue. For now, it has happened when doing a For example:
cy.get('[status="positive"]').first().within(() => {
cy.contains('Created');
cy.get([icon="clear"]).click();
});
cy.get('[data-testid="loc-list"]').find('list')
.should('have.length', data.length)
.each(($loc, index) => {
const locName = data.at(index).name;
cy.wrap($loc).should('contain.text', locName);
}); |
@delatrie , any update on issue. it is kind of blocker for us. |
The fix will be released as soon as #1127 gets reviewed & merged. |
Discussed in https://github.com/orgs/allure-framework/discussions/2650
Originally posted by pranit-lqc July 22, 2024
We are using Vue 3 component on the UI side.
Version,
"allure-commandline": "^2.29.0",
"allure-cypress": "^3.0.0-beta.7",
"cypress": "13.5.1",
Getting below error:
without the Allure plugin, we don't see this error.
The text was updated successfully, but these errors were encountered: