-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Failing tests for {{partial
issues in 2.15.
#15674
Conversation
d3444a0
to
1c31498
Compare
1c31498
to
744ae7e
Compare
622de5b fixes three of the test failures |
|
||
this.runTask(() => set(this.context, 'items', { | ||
items: emberA([{ id: 1 }, { id: 2 }, { id: 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.
This should be:
this.runTask(() => set(this.context, 'items',
emberA([{ id: 1 }, { id: 2 }, { id: 3 }])
));
(updated here: #15784)
|
||
this.runTask(() => set(this.context, 'items', { | ||
items: emberA(['apple', 'orange', 'banana']), | ||
})); |
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 should be:
this.runTask(() => set(this.context, 'items',
emberA([{ id: 1 }, { id: 2 }, { id: 3 }])
));
(updated here: #15784)
|
||
this.assertStableRerender(); | ||
|
||
this.assertText('apple: apple |orange: orange |banana: banana |'); |
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.
as we have a null
item, this should be:
this.assertText('apple: apple |: |orange: orange |banana: banana |');
(updated here: #15784)
now that #15784 has landed, this can be closed |
Fixed by @GavinJoyce in #15784 |
Related to #15621.