fix: add tests for enums
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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');
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user