Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiao Li committed Jan 14, 2020
1 parent 1f529a3 commit 59fc196
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ describe('ConsoleMetricExporter', () => {
it('should export information about metrics', () => {
const spyConsole = sinon.spy(console, 'log');

const meter = new MeterRegistry().getMeter('test-console-metric-exporter');
const meter = new MeterRegistry().getMeter(
'test-console-metric-exporter'
);
meter.addExporter(consoleExporter);
const gauge = meter.createGauge('gauge', {
description: 'a test description',
Expand Down

0 comments on commit 59fc196

Please sign in to comment.