diff --git a/packages/integration-tests/tests/swagger-check.test.ts b/packages/integration-tests/tests/swagger-check.test.ts new file mode 100644 index 000000000..2335793b6 --- /dev/null +++ b/packages/integration-tests/tests/swagger-check.test.ts @@ -0,0 +1,7 @@ +import api from '@/api'; + +describe('Swagger check', () => { + it('should succeed to provide swagger.json', async () => { + expect(await api.get('swagger.json')).toHaveProperty('statusCode', 200); + }); +});