mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-24 13:48:14 -05:00
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);
|
|
});
|
|
});
|