1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: failing test

This commit is contained in:
Ivar Conradi Østhus 2019-12-18 15:21:36 +01:00
parent 91d10f454f
commit ef17338f70

View File

@ -53,7 +53,7 @@ test('should collect metrics for client metric reports', t => {
const metrics = prometheusRegister.metrics();
t.regex(
metrics,
/feature_toggle_usage_total{toggle="TestToggle",active="true"} 10\nfeature_toggle_usage_total{toggle="TestToggle",active="false"} 5/
/feature_toggle_usage_total{toggle="TestToggle",active="true",appName="undefined"} 10\nfeature_toggle_usage_total{toggle="TestToggle",active="false",appName="undefined"} 5/
);
});