Skip to content

Commit

Permalink
Merge pull request #16033 from thoov/internal-test-helpers
Browse files Browse the repository at this point in the history
[CLEANUP] Convert internal-test-helpers to new test style
  • Loading branch information
rwjblue committed Dec 30, 2017
2 parents 213d436 + 65f772c commit d52eb87
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/internal-test-helpers/tests/index-test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
QUnit.module('internal-test-helpers');
import { moduleFor, AbstractTestCase } from 'internal-test-helpers';

QUnit.test('module present', function(assert) {
assert.ok(true, 'each package needs at least one test to be able to run through `npm test`');
moduleFor('internal-test-helpers', class extends AbstractTestCase {
['@test module present'](assert) {
assert.ok(true, 'each package needs at least one test to be able to run through `npm test`');
}
});

0 comments on commit d52eb87

Please sign in to comment.