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