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();
  });
});
