@toolisticon/oc-routes-prometheus-exporter
Version:
[](LICENSE) [](https://github.com/toolisticon/oc-routes-prometheus-exporter/act
15 lines (12 loc) • 318 B
JavaScript
const routes = require('../lib/routes');
describe('prometheus', () => {
/* eslint no-debugger: "off" */
debugger;
beforeEach(() => {
});
it('should fail without login', (done) => {
routes.list().then((routeList) => {
routeList.forEach(() => fail(), () => fail());
}, () => done());
});
});