-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Move ember-concurrency-specific-tests to the ember-concurrency@v2 test-app #464
Conversation
7ecc5a7
to
91ceab6
Compare
@@ -45,7 +45,7 @@ | |||
"@types/ember-test-helpers": "^1.0.10", | |||
"@types/ember-testing-helpers": "^0.0.4", | |||
"@types/ember__test-helpers": "^2.6.1", | |||
"@types/qunit": "^2.11.2", | |||
"@types/qunit": "^2.19.9", |
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 changed because between the different test apps we have different qunit types versions, and it's just easier to have these deps match, than to fix subtrees of the dep graph
@@ -2,27 +2,23 @@ import MockStableError, { | |||
overrideError, |
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.
all removals here went to the ember-concurrency-v2 app
…t-app config eh eh eh eh eh
91ceab6
to
fec1395
Compare
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.
same try config as "base-tests"
@@ -0,0 +1,442 @@ | |||
import MockStableError, { |
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 test is the same as it was in the base-test app
|
||
// @ember/test-waiters is still a v1 addon and is too weird | ||
// to have in-repo types working correctly. | ||
// @ts-ignore |
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.
ts-ignores can be cleaned up once test-waiters is a v2 addon and actually has types we can consume
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.
caveat: I didn't look at the moved tests to make sure they are moved correctly but overall everything seems to make sense
Context on "The Plan": #458
This extraction is ocurring so that we can more easily also test ember-concurrency@v3, which is very hard to try to test both v2 and v3 of ember-concurrency in the same app.
Requires: #463