File tree 1 file changed +8
-4
lines changed 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ const testConsole = new Console({
17
17
stderr : process . stderr ,
18
18
} ) ;
19
19
20
- testConsole . log ( process . env . RUNNER_DEBUG ) ;
21
-
22
20
/**
23
21
* Test stack that can be deployed to the selected environment.
24
22
*/
@@ -61,12 +59,18 @@ class TestStack {
61
59
testPrefix : stackNameProps . stackNamePrefix ,
62
60
} ) ;
63
61
this . app = app ?? new App ( ) ;
64
- this . stack = stack ?? new Stack ( this . app , this . testName ) ;
62
+ this . stack =
63
+ stack ??
64
+ new Stack ( this . app , this . testName , {
65
+ tags : {
66
+ Service : 'Powertools-for-AWS-e2e-tests' ,
67
+ } ,
68
+ } ) ;
65
69
this . #cli = new Toolkit ( {
66
70
color : false ,
67
71
ioHost : {
68
72
async notify ( msg ) {
69
- if ( process . env . RUNNER_DEBUG === 'true ' ) {
73
+ if ( process . env . RUNNER_DEBUG === '1 ' ) {
70
74
testConsole . log ( msg ) ;
71
75
} else {
72
76
if ( [ 'info' , 'warning' , 'error' ] . includes ( msg . level ) ) {
You can’t perform that action at this time.
0 commit comments