github
506 of 566 branches covered (89.4%)
Branch coverage included in aggregate %.
109 of 117 new or added lines in 11 files covered. (93.16%)
2232 of 2338 relevant lines covered (95.47%)
404.08 hits per line
1 |
import Measurement from './measurement/index.js' |
|
2 |
|
31✔ |
|
const bus = global.globalBus || (() => { |
|
NEW
|
throw new TypeError('Missing GlobalBus() instance on: global.globalBus') |
× |
NEW
|
})() |
× |
|
|
31✔ |
|
const metric = name => { |
|
8 |
const record = ({ name, value }) => |
|
9 |
bus.emit(new Measurement({ name, value }))
|
6,157✔ |
10 |
|
6,199✔ |
11 |
return {
|
6,199✔ |
12 |
record: value => record({ name, value }),
|
|
13 |
stop: () => bus.stop()
|
|
14 |
} |
6,199✔ |
15 |
} |
6,199✔ |
16 |
|
31✔ |
|
export { metric }
|
31✔ |