-
-
Notifications
You must be signed in to change notification settings - Fork 135
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
8.4: fix e2e tests #3850
8.4: fix e2e tests #3850
Conversation
before this change, we got a DB migration error (presumably because of too new MySQL version)
…warning if unmounted (needed to have the tests run through)
Hm, I do not understand why the e2e tests still fail on CircleCI. Locally they run through now. @markusguenther @mhsdesign any ideas? :) ERROR Cannot find the browser. "saucelabs:Firefox@latest:Windows 10" is neither a known browser alias, nor a path to an executable file. All the best, |
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.
Hi @skurfuerst,
thanks a lot for taking care of this ❤️ I tested both make test-e2e-docker
and make start-neos-dev-instance
locally and they both work perfectly 👍
ERROR Cannot find the browser. "saucelabs:Firefox@latest:Windows 10" is neither a known browser alias, nor a path to an executable file.
Since you didn't touch CI, I suspect the error is on saucelabs' end (Wasn't there some EOL announcement lately?). We probably need to revise our CI strategy for the E2E tests, so I'd say it's fine to ignore the red check as far as this PR is concerned.
Thanks @grebaldi for testing and giving feedback <3 <3 |
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.
Post merge +1 :)
Thanks for updating our testcafe from 2.x to 3.x 🥳
@@ -72,7 +72,9 @@ export default class ImageEditor extends Component { | |||
isAssetLoading: true | |||
}, () => { | |||
this.loadImage = loadImageMetadata(this.props.value.__identity).then(image => { | |||
this.setState({image, isAssetLoading: false}); | |||
if (this._isMounted) { |
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.
this probably fixes the flacky cropping tests? I also experienced issues here ^^
* for example, this runs all tests in chrome: | ||
`yarn run testcafe chrome Tests/IntegrationTests/Fixtures` | ||
* for example, this runs all tests in chrome: (NOTE starting with Chrome 127, --disable-search-engine-choice-screen is needed) | ||
`yarn run testcafe chrome:--disable-search-engine-choice-screen Tests/IntegrationTests/Fixtures/1Dimension` |
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.
thanks for the --disable-search-engine-choice-screen
hint its really stupid of chrome :D
Will upmerge today |
8.4: fix e2e tests # Conflicts: # packages/neos-ui-redux-store/src/CR/Nodes/selectors.ts
This change fixes the TestCafe Setup