Skip to content
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] Fix property setting #13810

Merged
merged 1 commit into from
Jul 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"express": "^4.5.0",
"finalhandler": "^0.4.0",
"github": "^0.2.3",
"glimmer-engine": "tildeio/glimmer#2caafc3",
"glimmer-engine": "tildeio/glimmer#431b006",
"glob": "^5.0.13",
"htmlbars": "0.14.24",
"mocha": "^2.4.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/ember-glimmer/tests/integration/input-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,23 @@ moduleFor('Input element tests', class extends RenderingTest {
this.runPropertyTest('value', ['foo', 'bar']);
}

['@htmlbars input placeholder attribute']() {
['@test input placeholder attribute']() {
this.runAttributeTest('placeholder', ['foo', 'bar']);
}

['@test input name attribute']() {
this.runAttributeTest('name', ['nam', 'name']);
}

['@htmlbars input maxlength attribute']() {
['@test input maxlength attribute']() {
this.runAttributeTest('maxlength', [2, 3]);
}

['@test input size attribute']() {
this.runAttributeTest('size', [2, 3]);
}

['@htmlbars input tabindex attribute']() {
['@test input tabindex attribute']() {
this.runAttributeTest('tabindex', [2, 3]);
}

Expand Down