Total Complexity | 3 |
Complexity/F | 1 |
Lines of Code | 16 |
Function Count | 3 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { assert } from 'chai'; |
||
2 | import entry from '../entry'; |
||
3 | |||
4 | suite('Generators: firstName'); |
||
5 | |||
6 | test('male name', function () { |
||
7 | assert.exists(entry.maleFirstName()); |
||
8 | }); |
||
9 | |||
10 | test('female name', function () { |
||
11 | assert.exists(entry.femaleFirstName()); |
||
12 | }); |
||
13 | |||
14 | test('first name', function () { |
||
15 | assert.exists(entry.firstName()); |
||
16 | }); |
||
17 |