Files
onspring-api-sdk-javascript/tests/DataFormat.spec.ts
T

18 lines
499 B
TypeScript
Raw Normal View History

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');
});
});
});