File tree 6 files changed +7
-7
lines changed
pages/BO/catalog/products/create
8.0/pages/BO/catalog/products/create
8.2/pages/BO/catalog/products/create
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ function requirePage(): BOProductsCreatePageInterface {
18
18
if ( semver . lt ( psVersion , '8.1.0' ) ) {
19
19
return require ( '@versions/8.0/pages/BO/catalog/products/create' ) . createProduct ;
20
20
}
21
- if ( semver . lt ( psVersion , '8.2 .0' ) ) {
22
- return require ( '@versions/8.1 /pages/BO/catalog/products/create' ) . createProduct ;
21
+ if ( semver . lt ( psVersion , '8.3 .0' ) ) {
22
+ return require ( '@versions/8.2 /pages/BO/catalog/products/create' ) . createProduct ;
23
23
}
24
24
return require ( '@versions/develop/pages/BO/catalog/products/create' ) . createProduct ;
25
25
}
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ function requirePage(): BOProductsCreateTabDetailsPageInterface {
9
9
if ( semver . lt ( psVersion , '8.1.0' ) ) {
10
10
return require ( '@versions/8.0/pages/BO/catalog/products/create/tabDetails' ) . detailsTab ;
11
11
}
12
- if ( semver . lt ( psVersion , '8.2 .0' ) ) {
13
- return require ( '@versions/8.1 /pages/BO/catalog/products/create/tabDetails' ) . detailsTab ;
12
+ if ( semver . lt ( psVersion , '8.3 .0' ) ) {
13
+ return require ( '@versions/8.2 /pages/BO/catalog/products/create/tabDetails' ) . detailsTab ;
14
14
}
15
15
return require ( '@versions/develop/pages/BO/catalog/products/create/tabDetails' ) . detailsTab ;
16
16
}
Original file line number Diff line number Diff line change 1
1
// Import pages
2
2
import type { BOProductsCreatePageInterface } from '@interfaces/BO/catalog/products/create' ;
3
- import { CreateProduct } from '@versions/develop /pages/BO/catalog/products/create' ;
3
+ import { CreateProduct } from '@versions/8.2 /pages/BO/catalog/products/create' ;
4
4
5
5
import type { Page } from 'playwright' ;
6
6
Original file line number Diff line number Diff line change 1
1
// Import pages
2
2
import type { BOProductsCreateTabDetailsPageInterface } from '@interfaces/BO/catalog/products/create/tabDetails' ;
3
- import { DetailsTab } from '@versions/develop /pages/BO/catalog/products/create/tabDetails' ;
3
+ import { DetailsTab } from '@versions/8.2 /pages/BO/catalog/products/create/tabDetails' ;
4
4
5
5
// Import data
6
6
import type FakerProduct from '@data/faker/product' ;
File renamed without changes.
Original file line number Diff line number Diff line change @@ -27,4 +27,4 @@ class DetailsTabVersion extends DetailsTab implements BOProductsCreateTabDetails
27
27
}
28
28
29
29
const detailsTab = new DetailsTabVersion ( ) ;
30
- export { detailsTab , DetailsTabVersion } ;
30
+ export { detailsTab , DetailsTabVersion as DetailsTab } ;
You can’t perform that action at this time.
0 commit comments