Skip to content

Commit

Permalink
test: fix enum names
Browse files Browse the repository at this point in the history
  • Loading branch information
buschtoens committed Oct 14, 2020
1 parent 2a1b417 commit b1f9a11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/addon/tests/unit/ts-module-a-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { works, SomeEnum, moduleB } from '@test/addon';
module('ts-module-a', function () {
test('it works', function (assert) {
assert.ok(works());
assert.ok('foo' in SomeEnum);
assert.ok('bar' in SomeEnum);
assert.ok('Foo' in SomeEnum);
assert.ok('Bar' in SomeEnum);
assert.ok(moduleB.nestedWorks());
});
});
4 changes: 2 additions & 2 deletions tests/app/tests/unit/ts-module-a-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { works, SomeEnum, moduleB } from '@test/ts-module-a';
module('ts-module-a', function () {
test('it works', function (assert) {
assert.ok(works());
assert.ok('foo' in SomeEnum);
assert.ok('bar' in SomeEnum);
assert.ok('Foo' in SomeEnum);
assert.ok('Bar' in SomeEnum);
assert.ok(moduleB.nestedWorks());
});
});

0 comments on commit b1f9a11

Please sign in to comment.