Changed folder structure

This commit is contained in:
Daniël van Noord
2021-04-12 13:02:28 +02:00
parent 1545d9782b
commit 077f0120b7
28 changed files with 122 additions and 128 deletions

View File

@@ -0,0 +1,11 @@
/* global describe, it */
const { assert } = require('../../node_modules/chai/chai');
const {
FormatTime,
} = require('../../src/Disp/BeautifyAndFormatting/Beautify');
describe('FormatTime', function () {
it('should return -1 when the value is not present', function () {
assert.equal(FormatTime(1, 0), '1 s');
});
});