File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ describe('Helpers', () => {
125125 it ( 'should filter out parameters with falsy values' , ( ) => {
126126 const parameters = [
127127 { value : 'value1' } ,
128- { value : '' } ,
128+ { value : '' } ,
129129 { value : 'value2' } ,
130130 { value : 'value3' } ,
131131 ] ;
Original file line number Diff line number Diff line change @@ -17,29 +17,29 @@ describe('OUTPUT_TYPES', () => {
1717 describe ( 'STDOUT' , ( ) => {
1818 it ( 'should log launch UUID to console.log' , ( ) => {
1919 const testUuid = 'test-launch-uuid-123' ;
20-
20+
2121 OUTPUT_TYPES . STDOUT ( testUuid ) ;
22-
22+
2323 expect ( consoleLogSpy ) . toHaveBeenCalledWith ( `Report Portal Launch UUID: ${ testUuid } ` ) ;
2424 } ) ;
2525 } ) ;
2626
2727 describe ( 'STDERR' , ( ) => {
2828 it ( 'should log launch UUID to console.error' , ( ) => {
2929 const testUuid = 'test-launch-uuid-456' ;
30-
30+
3131 OUTPUT_TYPES . STDERR ( testUuid ) ;
32-
32+
3333 expect ( consoleErrorSpy ) . toHaveBeenCalledWith ( `Report Portal Launch UUID: ${ testUuid } ` ) ;
3434 } ) ;
3535 } ) ;
3636
3737 describe ( 'ENVIRONMENT' , ( ) => {
3838 it ( 'should set RP_LAUNCH_UUID environment variable' , ( ) => {
3939 const testUuid = 'test-launch-uuid-789' ;
40-
40+
4141 OUTPUT_TYPES . ENVIRONMENT ( testUuid ) ;
42-
42+
4343 expect ( process . env . RP_LAUNCH_UUID ) . toBe ( testUuid ) ;
4444 } ) ;
4545 } ) ;
@@ -50,4 +50,4 @@ describe('OUTPUT_TYPES', () => {
5050 expect ( OUTPUT_TYPES . FILE ) . toBeDefined ( ) ;
5151 } ) ;
5252 } ) ;
53- } ) ;
53+ } ) ;
You can’t perform that action at this time.
0 commit comments