0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

test(integration-tests): check swagger.json (#1127)

This commit is contained in:
IceHe.xyz 2022-06-16 16:59:00 +08:00 committed by GitHub
parent 511012da92
commit 254fac52a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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