mirror of
https://github.com/BreizhHardware/express-prom-bundle.git
synced 2026-01-18 16:27:28 +01:00
12 lines
256 B
JavaScript
12 lines
256 B
JavaScript
'use strict';
|
|
/* eslint-env jasmine */
|
|
|
|
const normalizePath = require('../src/normalizePath');
|
|
|
|
describe('normalizePath', () => {
|
|
it('uses UrlValueParser by default', () => {
|
|
expect(normalizePath({url: '/a/12345'}))
|
|
.toBe('/a/#val');
|
|
});
|
|
});
|