10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
/// <reference types="Cypress" />
|
|
|
|
describe('Swagger Schema Checks', () => {
|
|
it('Should be valid with swagger-validator', function() {
|
|
cy.task('validateSwaggerFile', {
|
|
file: Cypress.env('swaggerBase')
|
|
}).should('equal', null);
|
|
});
|
|
});
|