author | ymh <ymh.work@gmail.com> |
Tue, 20 Mar 2018 15:02:40 +0100 | |
changeset 573 | 25f3d28f51b2 |
parent 476 | 9cffc7f32f14 |
permissions | -rw-r--r-- |
476 | 1 |
|
2 |
import { milliToMinutes } from 'app-client/helpers/milli-to-minutes'; |
|
3 |
import { module, test } from 'qunit'; |
|
4 |
||
5 |
module('Unit | Helper | milli to minutes'); |
|
6 |
||
7 |
// Replace this with your real tests. |
|
8 |
test('it works', function(assert) { |
|
9 |
let result = milliToMinutes([42]); |
|
10 |
assert.ok(result); |
|
11 |
}); |
|
12 |