Skip to content

Commit adf90f7

Browse files
committed
test: add helper tests
1 parent 57b504b commit adf90f7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/core/tests/helpers/arrayHelper.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Arr } from '../array';
1+
import { Arr } from '../../lib';
22

3-
jest.mock('../../config/service');
3+
jest.mock('../../lib/config/service');
44

55
describe('Array Helper', () => {
66
beforeEach(async () => {});

packages/core/tests/helpers/numberHelper.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Num } from '../number';
1+
import { Num } from '../../lib';
22

3-
jest.mock('../../config/service');
3+
jest.mock('../../../lib/config/service');
44

55
describe('Numbers Helper', () => {
66
beforeEach(async () => {});

packages/core/tests/helpers/objectHelper.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { InvalidValue } from '../../exceptions';
2-
import { Obj } from '../object';
1+
import { InvalidValue } from '../../lib';
2+
import { Obj } from '../../lib';
33

44
jest.mock('../../config/service');
55

0 commit comments

Comments
 (0)