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

19 lines
541 B
TypeScript
Raw Normal View History

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