github
506 of 566 branches covered (89.4%)
Branch coverage included in aggregate %.
115 of 138 new or added lines in 12 files covered. (83.33%)
2237 of 2357 relevant lines covered (94.91%)
406.45 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,243✔ |
10 |
|
6,285✔ |
11 |
return {
|
6,285✔ |
12 |
record: value => record({ name, value }),
|
|
13 |
stop: () => bus.stop()
|
|
14 |
} |
6,285✔ |
15 |
} |
6,285✔ |
16 |
|
31✔ |
|
export { metric }
|
31✔ |