Files

33 lines
944 B
TypeScript
Raw Permalink Normal View History

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