Skip to content
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

E2E test of issue #8785: Undefined when reading getUpdated #8843

Merged
merged 19 commits into from
Dec 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove extra symbols from assertion
Co-authored-by: Kirill Lakhov <kirill.9992@gmail.com>
  • Loading branch information
archibald1418 and klakhov authored Dec 25, 2024
commit 27920f75aadf3c7c2dec79780814ab8dece574db
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ context('The UI remains stable even when the metadata request fails.', () => {

cy.on('uncaught:exception', (err) => {
expect(err.code).to.equal(badResponse.statusCode);
expect(err.message).to.include(`> ${badResponse.body}`);
expect(err.message).to.include(badResponse.body);
return false;
});

Expand Down
Loading