2023-01-26 23:47:25 -06:00
|
|
|
import { DataFormat } from '../src/enums/DataFormat';
|
|
|
|
|
import { expect } from 'chai';
|
|
|
|
|
|
|
|
|
|
describe('DataFormat', function () {
|
|
|
|
|
describe('Raw', function () {
|
|
|
|
|
it('should return the correct value', function () {
|
|
|
|
|
const result = DataFormat.Raw;
|
|
|
|
|
expect(result).to.equal('Raw');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('Formatted', function () {
|
|
|
|
|
it('should return the correct value', function () {
|
|
|
|
|
const result = DataFormat.Formatted;
|
|
|
|
|
expect(result).to.equal('Formatted');
|
|
|
|
|
});
|
|
|
|
|
});
|
2023-02-01 23:45:14 -06:00
|
|
|
});
|