Jamie Curnow 5e66d677f1
All checks were successful
Close stale issues and PRs / stale (push) Successful in 18s
Adds test for dashboard endpoints
2025-03-24 14:34:45 +10:00

26 lines
576 B
JavaScript

/// <reference types="cypress" />
describe('Dashboard endpoints', () => {
let token;
before(() => {
cy.getToken().then((tok) => {
token = tok;
});
});
it('Should be able to get host counts', function() {
cy.task('backendApiGet', {
token: token,
path: '/api/reports/hosts'
}).then((data) => {
cy.validateSwaggerSchema('get', 200, '/reports/hosts', data);
expect(data).to.have.property('dead');
expect(data).to.have.property('proxy');
expect(data).to.have.property('redirection');
expect(data).to.have.property('stream');
});
});
});