koel/resources/assets/js/tests/services/utilsTest.js

16 lines
439 B
JavaScript
Raw Normal View History

2015-12-13 04:42:28 +00:00
require('chai').should();
import utils from '../../services/utils';
describe('services/utils', () => {
describe('#secondsToHis', () => {
it('correctly formats a duration to H:i:s', () => {
utils.secondsToHis(7547).should.equal('02:05:47');
});
it('ommits hours from short duration when formats to H:i:s', () => {
utils.secondsToHis(314).should.equal('05:14');
});
});
});