File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ import { act } from "react";
66
77jest . 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 } ) ;
Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ import { act } from "react";
66
77jest . 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 } ) ;
You can’t perform that action at this time.
0 commit comments