@@ -78,6 +78,9 @@ type Fixtures = {
7878 // PRODUCT DATA
7979 mainProductService : ProductData ;
8080 otherProductService : ProductData ;
81+ thirdProductService : ProductData ;
82+ fourthProductService : ProductData ;
83+ fifthProductService : ProductData ;
8184 // USERS DATA
8285 mainUserService : UserData ;
8386 altUserService : UserData ;
@@ -144,12 +147,18 @@ export const test = baseTest.extend<Fixtures>({
144147 wardLocationService : async ( { page } , use ) =>
145148 use ( new LocationData ( LOCATION_KEY . WARD , page . request ) ) ,
146149 noPickAndPutawayStockDepotService : async ( { page } , use ) =>
147- use ( new LocationData ( LOCATION_KEY . NO_PICK_AND_PUTAWAY_STOCK , page . request ) ) ,
150+ use ( new LocationData ( LOCATION_KEY . NO_PICK_AND_PUTAWAY_STOCK , page . request ) ) ,
148151 // PRODUCTS
149152 mainProductService : async ( { page } , use ) =>
150153 use ( new ProductData ( PRODUCT_KEY . ONE , page . request ) ) ,
151154 otherProductService : async ( { page } , use ) =>
152155 use ( new ProductData ( PRODUCT_KEY . TWO , page . request ) ) ,
156+ thirdProductService : async ( { page } , use ) =>
157+ use ( new ProductData ( PRODUCT_KEY . THREE , page . request ) ) ,
158+ fourthProductService : async ( { page } , use ) =>
159+ use ( new ProductData ( PRODUCT_KEY . FOUR , page . request ) ) ,
160+ fifthProductService : async ( { page } , use ) =>
161+ use ( new ProductData ( PRODUCT_KEY . FIVE , page . request ) ) ,
153162 // USERS
154163 mainUserService : async ( { page } , use ) =>
155164 use ( new UserData ( USER_KEY . MAIN , page . request ) ) ,
0 commit comments