(size)
| 12 | function noop() {} |
| 13 | |
| 14 | function createObj(size) { |
| 15 | return Array.from({ length: size }, (n) => ({ |
| 16 | foo: 'yarp', |
| 17 | nope: { |
| 18 | bar: '123', |
| 19 | a: [1, 2, 3], |
| 20 | baz: n, |
| 21 | c: {}, |
| 22 | b: [], |
| 23 | }, |
| 24 | })); |
| 25 | } |
| 26 | |
| 27 | function main({ n, subscribers, checkSubscribers, objSize }) { |
| 28 | const channel = dc.channel('test'); |
no test coverage detected