Total Complexity | 5 |
Complexity/F | 1 |
Lines of Code | 19 |
Function Count | 5 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { monitor, monitorService, monitorModule, setupMonitor } from '../index'; |
||
2 | |||
3 | describe('index', () => { |
||
4 | it('exports monitor', () => { |
||
5 | expect(typeof monitor).toBe('function'); |
||
6 | }); |
||
7 | |||
8 | it('exports monitorService', () => { |
||
9 | expect(typeof monitorService).toBe('function'); |
||
10 | }); |
||
11 | |||
12 | it('exports monitorModule', () => { |
||
13 | expect(typeof monitorModule).toBe('function'); |
||
14 | }); |
||
15 | |||
16 | it('exports setupMonitor', () => { |
||
17 | expect(typeof setupMonitor).toBe('function'); |
||
18 | }); |
||
19 | }); |
||
20 |