mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-14 11:42:04 +00:00
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);
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|