Skip to content

Commit

Permalink
use strictEqual function instead of ok
Browse files Browse the repository at this point in the history
  • Loading branch information
paper2 committed Dec 18, 2024
1 parent 70d0935 commit fd7a69b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ describe('InMemoryMetricExporter', () => {
await exporter.shutdown();

const otherMetrics = exporter.getMetrics();
assert.ok(otherMetrics.length === 0);
assert.strictEqual(otherMetrics.length, 0);

await metricReader.shutdown();
});
Expand Down

0 comments on commit fd7a69b

Please sign in to comment.