Skip to content

Commit

Permalink
Merge pull request #83 from angelayanpan/angelayanpan/test-desc-typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue authored Apr 26, 2022
2 parents ea44f22 + d5008a0 commit 535a8ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/helpers/element-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ module('Integration | Helper | element', function (hooks) {
assert.dom('h1').doesNotExist();
});

test('it throws when pasased a number', async function () {
test('it throws when passed a number', async function () {
expectEmberError(
new Error(
'Assertion Failed: The argument passed to the `element` helper must be a string (you passed `123`)'
Expand All @@ -372,7 +372,7 @@ module('Integration | Helper | element', function (hooks) {
`);
});

test('it throws when pasased a boolean', async function () {
test('it throws when passed a boolean', async function () {
expectEmberError(
new Error(
'Assertion Failed: The argument passed to the `element` helper must be a string (you passed `false`)'
Expand All @@ -388,7 +388,7 @@ module('Integration | Helper | element', function (hooks) {
`);
});

test('it throws when pasased an object', async function () {
test('it throws when passed an object', async function () {
expectEmberError(
new Error(
'Assertion Failed: The argument passed to the `element` helper must be a string'
Expand Down

0 comments on commit 535a8ae

Please sign in to comment.