@@ -86,6 +86,7 @@ test.describe('Export items template on inbound add items page', () => {
8686 await createInboundPage . addItemsStep . isLoaded ( ) ;
8787 } ) ;
8888
89+ productService . setProduct ( '1' ) ;
8990 const PRODUCT_ONE = await productService . getProduct ( ) ;
9091 productService . setProduct ( '2' ) ;
9192 const PRODUCT_TWO = await productService . getProduct ( ) ;
@@ -197,6 +198,7 @@ test.describe('Import template with data', () => {
197198 workbooks . push ( downloadedTemplateFile ) ;
198199 } ) ;
199200
201+ productService . setProduct ( '1' ) ;
200202 const PRODUCT_ONE = await productService . getProduct ( ) ;
201203 productService . setProduct ( '2' ) ;
202204 const PRODUCT_TWO = await productService . getProduct ( ) ;
@@ -271,6 +273,7 @@ test.describe('Import template with data', () => {
271273 } ) ;
272274
273275 await test . step ( 'Add items to table' , async ( ) => {
276+ productService . setProduct ( '1' ) ;
274277 const PRODUCT_ONE = await productService . getProduct ( ) ;
275278 const USER = await mainUserService . getUser ( ) ;
276279
@@ -364,6 +367,7 @@ test.describe('Import template with data', () => {
364367
365368 let ROW : CreateInboundAddItemsTableEntity ;
366369 await test . step ( 'Add items to table' , async ( ) => {
370+ productService . setProduct ( '1' ) ;
367371 const PRODUCT_ONE = await productService . getProduct ( ) ;
368372 const USER = await mainUserService . getUser ( ) ;
369373
0 commit comments