Skip to content

Commit 849dd5d

Browse files
VIA-129 DM/DB Rename integration tests
1 parent a2c51a3 commit 849dd5d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/vaccines/6-in-1/page.integration.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import { act } from "react";
66

77
jest.mock("@src/services/content-api/contentStylingService.tsx");
88

9-
describe("6-in-1 vaccine page", () => {
9+
describe("6-in-1 vaccine page - integration test", () => {
1010
beforeEach(() => {
1111
(getStyledContentForVaccine as jest.Mock).mockResolvedValue(
1212
mockStyledContent,
1313
);
1414
});
1515

16-
it("should contain page content from embedded vaccine component", async () => {
16+
it("should display 6-in-1 content from embedded vaccine component", async () => {
1717
await act(async () => {
1818
render(Vaccine6in1());
1919
});

src/app/vaccines/rsv/page.integration.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import { act } from "react";
66

77
jest.mock("@src/services/content-api/contentStylingService.tsx");
88

9-
describe("RSV vaccine page", () => {
9+
describe("RSV vaccine page - integration test", () => {
1010
beforeEach(() => {
1111
(getStyledContentForVaccine as jest.Mock).mockResolvedValue(
1212
mockStyledContent,
1313
);
1414
});
1515

16-
it("should contain page content from embedded vaccine component", async () => {
16+
it("should display RSV content from embedded vaccine component", async () => {
1717
await act(async () => {
1818
render(VaccineRsv());
1919
});

0 commit comments

Comments
 (0)