@leanup/cli
Version:
This CLI brings along all required tools to serve, test and build multi framework SPAs
19 lines (15 loc) • 394 B
text/typescript
import { expect } from 'chai';
import { IVersion, IVersionLabelEnum } from '@leanup/openapi-demo';
describe(`Test: OpenAPI`, () => {
const label: IVersionLabelEnum = IVersionLabelEnum.Latest;
const version: IVersion = {
major: 1,
minor: 2,
patch: 3,
text: '1.2.3',
label: label,
};
it('Test Version', () => {
expect(version.text).be.equal('1.2.3');
});
});