Skip to content

Commit

Permalink
test: add helper tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chhabra1112 committed Jan 18, 2025
1 parent 57b504b commit adf90f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/core/tests/helpers/arrayHelper.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Arr } from '../array';
import { Arr } from '../../lib';

jest.mock('../../config/service');
jest.mock('../../lib/config/service');

describe('Array Helper', () => {
beforeEach(async () => {});
Expand Down
4 changes: 2 additions & 2 deletions packages/core/tests/helpers/numberHelper.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Num } from '../number';
import { Num } from '../../lib';

jest.mock('../../config/service');
jest.mock('../../../lib/config/service');

describe('Numbers Helper', () => {
beforeEach(async () => {});
Expand Down
4 changes: 2 additions & 2 deletions packages/core/tests/helpers/objectHelper.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { InvalidValue } from '../../exceptions';
import { Obj } from '../object';
import { InvalidValue } from '../../lib';
import { Obj } from '../../lib';

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

Expand Down

0 comments on commit adf90f7

Please sign in to comment.