Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 14 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { clone } from '../../entry'; |
||
2 | import { FunctionTester } from '../../utils'; |
||
3 | |||
4 | const tester = new FunctionTester(clone); |
||
5 | |||
6 | suite('object: clone'); |
||
7 | |||
8 | test('Positive: deep clone @example', function () { |
||
9 | tester.test({ a: 1, b: { c: 'text' } }, { a: 1, b: { c: 'text' } }); |
||
10 | }); |
||
11 | |||
12 | after(async function () { |
||
13 | // console.log('after', this); |
||
14 | }); |
||
15 | |||
16 |