Skip to content

Commit 0b98d66

Browse files
committed
fix conflicts
1 parent e82fb76 commit 0b98d66

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/runner-shared/src/logger.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,10 @@ export const logger = {
3030
_.each(formattedLog, (value, key) => {
3131
// don't log empty strings
3232
// _.trim([]) returns '' but we want to log empty arrays, so account for that
33-
<<<<<<< HEAD
3433
if (_.isString(value) && _.trim(value) === '') return
35-
=======
34+
3635
// Skip trim if we know value is an object
3736
if (typeof value !== 'object' && _.trim(value) === '' && !_.isArray(value)) return
38-
>>>>>>> develop
3937

4038
this.log(`%c${key}`, 'font-weight: bold', value)
4139
})

packages/types/src/server.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export interface LaunchArgs {
3636
testingType: Cypress.TestingType
3737
invokedFromCli: boolean
3838
os: PlatformName
39+
exit?: boolean
3940

4041
onFocusTests?: () => any
4142
}

0 commit comments

Comments
 (0)