File tree Expand file tree Collapse file tree
workspaces/bulk-import/e2e-tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 "lint:fix" : " eslint . --fix" ,
1919 "prettier:check" : " prettier --check ." ,
2020 "prettier:fix" : " prettier --write ." ,
21- "check" : " tsc --noEmit && yarn lint:check && yarn prettier:check"
21+ "check" : " tsc --noEmit && yarn lint:check && yarn prettier:check" ,
22+ "tsc:check" : " tsc --noEmit"
2223 },
2324 "devDependencies" : {
2425 "@eslint/js" : " ^9.39.2" ,
Original file line number Diff line number Diff line change @@ -9,13 +9,17 @@ import { $ } from "rhdh-e2e-test-utils/utils";
99
1010const BEFORE_ALL_TIMEOUT_MS = 30 * 60 * 1000 ; // 30 min for orchestrator + RHDH deploy
1111
12- export const test = base . extend < {
13- rhdhDeploymentWorker : RHDHDeployment ;
14- rhdh : RHDHDeployment ;
15- uiHelper : UIhelper ;
16- loginHelper : LoginHelper ;
17- baseURL : string ;
18- } > ( {
12+ export const test = base . extend <
13+ {
14+ rhdh : RHDHDeployment ;
15+ uiHelper : UIhelper ;
16+ loginHelper : LoginHelper ;
17+ baseURL : string ;
18+ } ,
19+ {
20+ rhdhDeploymentWorker : RHDHDeployment ;
21+ }
22+ > ( {
1923 rhdhDeploymentWorker : [
2024 async ( { } , use , workerInfo ) => {
2125 const projectName = workerInfo . project . name ;
You can’t perform that action at this time.
0 commit comments