@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
13 lines (10 loc) • 373 B
text/typescript
import { describe, expect, it } from 'vitest';
import { OpenApiSpecification } from './spec';
describe('when importing the open api specification', () => {
it('it should load', () => {
expect(OpenApiSpecification).toBeDefined();
});
it('it should have the shape of an openapi document', () => {
expect(OpenApiSpecification.openapi).toBeDefined();
});
});