Skip to content

Commit

Permalink
fix imports in test
Browse files Browse the repository at this point in the history
  • Loading branch information
CachedaCodes committed Jan 19, 2024
1 parent e6ab9e6 commit cc16198
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { mount, Wrapper } from '@vue/test-utils';
import Vue, { ref, nextTick, Ref } from 'vue';
import { TaggingRequest } from '@empathyco/x-types';
import { useEmitDisplayEvent } from '../../composables';
import { useEmitDisplayEvent } from '../../composables/use-on-display';
import DisplayEmitter from '../display-emitter.vue';
import { getDataTestSelector } from '../../__tests__/utils';

jest.mock('../../composables', () => ({
jest.mock('../../composables/use-on-display', () => ({
useEmitDisplayEvent: jest.fn()
}));

Expand Down

0 comments on commit cc16198

Please sign in to comment.