nginx-proxy-manager/test/cypress/integration/api/SwaggerSchema.spec.js

10 lines
244 B
JavaScript
Raw Normal View History

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