Skip to content

Commit c16f5bc

Browse files
committed
CCM-11492 Update imports
1 parent 2efa742 commit c16f5bc

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

frontend/src/__tests__/app/choose-templates/page.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
LETTER_TEMPLATE,
1717
NHS_APP_TEMPLATE,
1818
SMS_TEMPLATE,
19-
} from '@testhelpers';
19+
} from '@testhelpers/helpers';
2020
import { redirect } from 'next/navigation';
2121

2222
const { pageTitle } = content.pages.chooseTemplatesForMessagePlan;

frontend/src/__tests__/components/molecules/MessagePlanBlock.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { render, screen } from '@testing-library/react';
33
import { MessagePlanBlock } from '@molecules/MessagePlanBlock/MessagePlanBlock';
44
import type { CascadeItem, Channel } from 'nhs-notify-backend-client';
55
import type { TemplateDto } from 'nhs-notify-backend-client';
6-
import { EMAIL_TEMPLATE } from '@testhelpers';
6+
import { EMAIL_TEMPLATE } from '@testhelpers/helpers';
77

88
function buildCascadeItem(channel: Channel): CascadeItem {
99
return {

frontend/src/__tests__/components/organisms/CreateEditMessagePlan.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
EMAIL_TEMPLATE,
1212
LETTER_TEMPLATE,
1313
NHS_APP_TEMPLATE,
14-
} from '@testhelpers';
14+
} from '@testhelpers/helpers';
1515

1616
const mockTemplates: MessagePlanTemplates = {} as MessagePlanTemplates;
1717

frontend/src/__tests__/utils/message-plans.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ import type {
1717
RoutingConfig,
1818
RoutingConfigStatus,
1919
} from 'nhs-notify-backend-client';
20-
import { EMAIL_TEMPLATE, NHS_APP_TEMPLATE, SMS_TEMPLATE } from '@testhelpers';
20+
import {
21+
EMAIL_TEMPLATE,
22+
NHS_APP_TEMPLATE,
23+
SMS_TEMPLATE,
24+
} from '@testhelpers/helpers';
2125

2226
jest.mock('@utils/amplify-utils');
2327
jest.mock('nhs-notify-backend-client', () => {

0 commit comments

Comments
 (0)