Skip to content

Commit a13463e

Browse files
author
maria-hambardzumian
committed
EPMRPP-89496 || fixed linter
1 parent 4fcad70 commit a13463e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

__tests__/helpers.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
];

__tests__/outputs.spec.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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+
});

0 commit comments

Comments
 (0)