Updated cypress entirely

This commit is contained in:
Jamie Curnow
2023-05-31 11:36:58 +10:00
parent 0461689d65
commit e7791c2a0f
15 changed files with 33 additions and 15 deletions

View File

@ -0,0 +1,9 @@
/// <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);
});
});