File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,10 +20,6 @@ const baseTest = base.extend<
2020 rhdhDeploymentWorker : [
2121 // eslint-disable-next-line no-empty-pattern
2222 async ( { } , use , workerInfo ) => {
23- console . log (
24- `Deploying rhdh for plugin ${ workerInfo . project . name } in namespace ${ workerInfo . project . name } ` ,
25- ) ;
26-
2723 const rhdhDeployment = new RHDHDeployment ( workerInfo . project . name ) ;
2824
2925 await rhdhDeployment . configure ( ) ;
Original file line number Diff line number Diff line change @@ -43,17 +43,7 @@ export default class TeardownReporter implements Reporter {
4343 console . log (
4444 `[TeardownReporter] Deleting namespace "${ ns } " (project: ${ projectName } )` ,
4545 ) ;
46- try {
47- await k8sClient . deleteNamespace ( ns ) ;
48- console . log (
49- `[TeardownReporter] Namespace "${ ns } " deleted successfully` ,
50- ) ;
51- } catch ( error ) {
52- console . error (
53- `[TeardownReporter] Failed to delete namespace "${ ns } ":` ,
54- error ,
55- ) ;
56- }
46+ await k8sClient . deleteNamespace ( ns ) ;
5747 }
5848 }
5949 }
You can’t perform that action at this time.
0 commit comments