diff --git a/src/utils/__tests__/loadAndBundleSpec.test.ts b/src/utils/__tests__/loadAndBundleSpec.test.ts index 15612c71..2972ac5e 100644 --- a/src/utils/__tests__/loadAndBundleSpec.test.ts +++ b/src/utils/__tests__/loadAndBundleSpec.test.ts @@ -4,12 +4,6 @@ import { resolve } from 'path'; import { loadAndBundleSpec } from '../loadAndBundleSpec'; describe('#loadAndBundleSpec', () => { - it('should load And Bundle Spec demo/openapi.yaml', async () => { - const spec = yaml.load(readFileSync(resolve(__dirname, '../../../demo/openapi.yaml'), 'utf-8')); - const bundledSpec = await loadAndBundleSpec(spec); - expect(bundledSpec).toMatchInlineSnapshot(); - }); - it('should load And Bundle Spec demo/openapi-3-1.yaml', async () => { const spec = yaml.load( readFileSync(resolve(__dirname, '../../../demo/openapi-3-1.yaml'), 'utf-8'),