Files
HowBadIsMyBatch/test/SymptomsCausedByVaccines/UtilsTest.js
frankknoll b6c5a92b55 refactoring
2023-10-15 10:35:32 +02:00

16 lines
404 B
JavaScript

QUnit.module('UtilsTest', function () {
QUnit.test('convertDict2CSV', function (assert) {
// Given
const dict = {
"MM,R": 26.17432376240791,
"VARCEL": 10.549534724816644
};
// When
const csv = Utils.convertDict2CSV(dict);
// Then
assert.equal(csv, '"MM,R","VARCEL"\n26.17432376240791,10.549534724816644');
});
});