changeset 20 | a9b98b16b053 |
19:eadaf0b8f02e | 20:a9b98b16b053 |
---|---|
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 }); |