changeset 476 | 9cffc7f32f14 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cms/app-client/tests/unit/helpers/milli-to-minutes-test.js Sun Dec 18 01:13:51 2016 +0100 @@ -0,0 +1,12 @@ + +import { milliToMinutes } from 'app-client/helpers/milli-to-minutes'; +import { module, test } from 'qunit'; + +module('Unit | Helper | milli to minutes'); + +// Replace this with your real tests. +test('it works', function(assert) { + let result = milliToMinutes([42]); + assert.ok(result); +}); +