UNPKG

@leanup/cli-core-test

Version:

This module contains the test feature for the @leanup/cli.

19 lines (15 loc) 403 B
import { expect } from 'chai'; import { IVersion, IVersionLabelEnum } from '../../openapi/typescript-rxjs'; 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'); }); });