Added users cypress tests

This commit is contained in:
Jamie Curnow
2020-08-06 11:57:31 +10:00
parent 5be46b4b20
commit 4a07bf666d
3 changed files with 56 additions and 60 deletions

View File

@ -0,0 +1,22 @@
/// <reference types="Cypress" />
describe('Basic API checks', () => {
it('Should return a valid health payload', function () {
cy.wait(2000);
cy.task('backendApiGet', {
path: '/api/',
}).then((data) => {
// Check the swagger schema:
cy.validateSwaggerSchema('get', '/', data);
});
});
it('Should return a valid schema payload', function () {
cy.wait(2000);
cy.task('backendApiGet', {
path: '/api/schema',
}).then((data) => {
expect(data.openapi).to.be.equal('3.0.0');
});
});
});