-
Notifications
You must be signed in to change notification settings - Fork 19
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
Test against ember-data ^3.8.0 #208
Test against ember-data ^3.8.0 #208
Conversation
1b2e0b4
to
840112b
Compare
1852807
to
6b9ae92
Compare
6b9ae92
to
e690de9
Compare
3a0e50d
to
00631b2
Compare
00631b2
to
f8a2a7d
Compare
I had another PR sometime before, which test against ember-cli generated new app. #200 |
da20639
to
738ef5f
Compare
lib/utilities/pristine.js
Outdated
@@ -95,7 +95,7 @@ function installPristineApp(appName, options) { | |||
hasBowerComponents, | |||
skipNpm, | |||
emberVersion: options.emberVersion || 'canary', | |||
emberDataVersion: options.emberDataVersion || 'emberjs/data#master' | |||
emberDataVersion: options.emberDataVersion || 'emberjs/data#v3.8.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.
Can we use:
emberDataVersion: options.emberDataVersion || 'emberjs/data#v3.8.0' | |
emberDataVersion: options.emberDataVersion || '^3.8.0' |
I'd rather allow drift (using the latest
tag)...
@kiwiupover Yea it is. I removed the canary-test (ember data master) and is now using the tests/dummy. The 30 file change was adding a new test/canary-app |
0f406ee
to
a2899fd
Compare
ember-fastboot/ember-cli-fastboot#679
ember-cli-addon-test
by default tests againstember-data#master
this PR removes#master
and uses^3.8.0
Updates ember-cli to
3.8.0
ember-engines/ember-engines#638