1
import { author } from 'app-client/helpers/author';
2
import { module, test } from 'qunit';
3
4
module('Unit | Helper | author');
5
6
// Replace this with your real tests.
7
test('it works', function(assert) {
8
let result = author([42]);
9
assert.ok(result);
10
});