Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 8 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | const app = require('./../../../src/back/app'); |
||
2 | |||
3 | describe('App bootstrap.', () => { |
||
4 | test('Main test', () => { |
||
5 | // Just for the sake of testing, assert that app is object. |
||
6 | expect(app instanceof Object).toBeTruthy(); |
||
7 | }); |
||
8 | }); |
||
9 |