mirror of https://github.com/calzoneman/sync.git
11 lines
351 B
JavaScript
11 lines
351 B
JavaScript
const assert = require('assert');
|
|
const PrometheusConfig = require('../../lib/configuration/prometheusconfig').PrometheusConfig;
|
|
|
|
describe('PrometheusConfig', () => {
|
|
describe('#constructor', () => {
|
|
it('defaults to enabled=false', () => {
|
|
assert.strictEqual(new PrometheusConfig().isEnabled(), false);
|
|
});
|
|
});
|
|
});
|