Bump path-parse from 1.0.6 to 1.0.7
[KisSync.git] / test / configuration / prometheusconfig.js
blobcd9a9139072392e0499ea7cf78acb6809a8d16ca
1 const assert = require('assert');
2 const PrometheusConfig = require('../../lib/configuration/prometheusconfig').PrometheusConfig;
4 describe('PrometheusConfig', () => {
5 describe('#constructor', () => {
6 it('defaults to enabled=false', () => {
7 assert.strictEqual(new PrometheusConfig().isEnabled(), false);
8 });
9 });
10 });