Skip to content

Commit

Permalink
tests: Fix typo (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 authored Jan 23, 2017
1 parent fa8eaf2 commit a2b84eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if (config.stripTestSelectors) {
});

test('it works with multiple data-test-* attributes on HTML tags', function (assert) {
this.render(hbs`<span data-test-first data-test-second"second-id" ></span>`);
this.render(hbs`<span data-test-first data-test-second="second-id" ></span>`);

assert.equal(this.$('span').length, 1, 'the span is present');
assert.equal(this.$('span[data-test-first]').length, 0, 'data-test-first is stripped');
Expand Down

0 comments on commit a2b84eb

Please sign in to comment.