Skip to content

Commit

Permalink
[BUGFIX] Remove unused async in tests.
Browse files Browse the repository at this point in the history
3.12+ transpile `async` / `await` in tests without issue, but 3.10 and
lower do not. This stray (and unused!) `async` slipped through via a
cherry-pick and caused IE11 test suite to fail (and therefore prevented
publishing of 3.10.2).
  • Loading branch information
rwjblue committed Jun 18, 2019
1 parent 4cff6ee commit ffa80d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ if (EMBER_GLIMMER_ANGLE_BRACKET_BUILT_INS) {
);

return this.visit('/')
.then(async () => {
.then(() => {
assert.equal(this.$('#good-link').length, 1, 'good-link should be in the DOM');
assert.equal(this.$('#bad-link').length, 1, 'bad-link should be in the DOM');

Expand Down

0 comments on commit ffa80d4

Please sign in to comment.