-
Notifications
You must be signed in to change notification settings - Fork 489
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
fix: resolve e2e test failures #2122
Conversation
this ensures kubo interop CI test only runs them once.. we don't want the burden of flakiness on them
## [4.0.1](v4.0.0...v4.0.1) (2023-06-14) CID `bafybeigs6d53gpgu34553mbi5bbkb26e4ikruoaaar75jpfdywpup2r3my` --- ### Bug Fixes * resolve e2e test failures ([#2122](#2122)) ([106627d](106627d))
🎉 This PR is included in version 4.0.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good on the surface, but the hackiness might bite.
@@ -72,12 +75,16 @@ test.describe('IPNS publishing', () => { | |||
let keyName | |||
let ipfs | |||
test.beforeEach(async ({ page }) => { | |||
keyName = 'pet-name-e2e-ipns-test-' + new Date().getTime() | |||
keyName = 'pet-name-e2e-ipns-test-' + new Date().getTime() + Math.random().toString(16).slice(2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't time randomness sufficient?
fixes interop test failure in ipfs/kubo#9940