-
Notifications
You must be signed in to change notification settings - Fork 158
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 Github actions not running #843
Conversation
ember-cli-addon-tests defaults to use ember-data 3.8 which is not compatible any more https://github.com/tomdale/ember-cli-addon-tests/blob/6f0beb154853d7e755a8007a30f01eb2b4f4a6dc/lib/utilities/pristine.js#L98 Also disable a test which throws: Error: Cannot find module 'abortcontroller-polyfill/dist/cjs-ponyfill'
1bb1608
to
f63d2fb
Compare
@@ -32,7 +33,7 @@ describe('request details', function () { | |||
.create('request', { | |||
skipNpm: true, | |||
emberVersion: 'latest', | |||
emberDataVersion: 'latest', | |||
emberDataVersion: '~3.19.0', |
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.
do we have problems with ember-fetch + ember-data?
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.
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.
I forgot if this is related to the error I saw in between commits. I'm just pinning ember-data to the version used in the project.
The ember-fetch issue is real, also seen at https://github.com/embroider-build/embroider/blob/28460bf58e75e653d917c2a97b6e616abf02d75b/tests/scenarios/fastboot-app-test.ts#L22 but I do not know why
Is the ember-fetch linked issue related?
CI was skipped in #832