1
import { addOne } from '../../../helpers/add-one';
2
import { module, test } from 'qunit';
3
4
module('Unit | Helper | add one');
5
6
// Replace this with your real tests.
7
test('it works', function(assert) {
8
let result = addOne(42);
9
assert.equal(result, 43);
10
});