cms/app-client/tests/unit/helpers/milli-to-minutes-test.js
changeset 476 9cffc7f32f14
equal deleted inserted replaced
475:dbb941b9fb66 476:9cffc7f32f14
       
     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