-
-
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
[Glimmer2] Migrate bindings integration test #13210
[Glimmer2] Migrate bindings integration test #13210
Conversation
this.assertText('bar'); | ||
} | ||
|
||
['@test should accept bindings as a string or an Ember.binding']() { |
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 just straight up doesn't work for HTMLBars but does for glimmer. Must be something with the way I updated the view semantics. Test output was two way: , string:
☔ The latest upstream changes (presumably #13195) made this pull request unmergeable. Please resolve the merge conflicts. |
0594257
to
8344359
Compare
equal(view.$().text(), '', 'rendered undefined binding'); | ||
}); | ||
|
||
QUnit.test('should cleanup bound properties on rerender', function() { |
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.
👍 🔥
Sorry for the delay. Just two quick comment, looks great otherwise! If you can't get to those by the end of day, I can probably just do it for you! |
Doing it now, gimme a few mintutes |
8344359
to
32d83e9
Compare
@chancancode updated and squashed! |
Part of #13127.
Migrated the undefined dynamic path test. Kept the binding and re-binding tests. Everything else is tested elsewhere.