Skip to content

Commit

Permalink
test: update tests after conflict fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mohandast52 committed Aug 27, 2024
1 parent 5c7012b commit 5f7ccd2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jest.mock('common-util/Details/utils', () => ({
checkIfServiceRequiresWhitelisting: jest.fn(() => false),
}));

jest.mock('common-util/Details/DetailsSubInfo/hooks', () => ({
useTokenomicsUnitType: jest.fn(() => 1),
jest.mock('common-util/Details/DetailsSubInfo/utils', () => ({
getTokenomicsUnitType: jest.fn(() => 1),
}));

jest.mock('common-util/hooks/useHelpers', () => ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ jest.mock('components/ListComponents/utils', () => ({
getTokenUri: jest.fn(),
}));

jest.mock('common-util/Details/DetailsSubInfo/hooks', () => ({
useTokenomicsUnitType: jest.fn(() => 1),
jest.mock('common-util/Details/DetailsSubInfo/utils', () => ({
getTokenomicsUnitType: jest.fn(() => 1),
}));

const dummyDetails = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ jest.mock('common-util/Details/utils', () => ({
checkIfServiceRequiresWhitelisting: jest.fn(),
}));

jest.mock('common-util/Details/DetailsSubInfo/hooks', () => ({
useTokenomicsUnitType: jest.fn(() => 1),
jest.mock('common-util/Details/DetailsSubInfo/utils', () => ({
getTokenomicsUnitType: jest.fn(() => 1),
}));


Expand Down

0 comments on commit 5f7ccd2

Please sign in to comment.