Skip to content

Commit

Permalink
Update coreDataShape.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsch01 authored Sep 22, 2023
1 parent 55fd320 commit e7e8d44
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/data-context/src/data/coreDataShape.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ interface CloudDataShape {

export interface CoreDataShape {
cliBrowser: string | null
isBrowserGivenByCli: boolean
cliTestingType: string | null
activeBrowser: FoundBrowser | null
machineId: Promise<string | null>
Expand Down Expand Up @@ -180,6 +181,7 @@ export function makeCoreData (modeOptions: Partial<AllModeOptions> = {}): CoreDa
return {
servers: {},
cliBrowser: modeOptions.browser ?? null,
isBrowserGivenByCli: modeOptions.isBrowserGivenByCli ?? false,
cliTestingType: modeOptions.testingType ?? null,
machineId: machineId(),
machineBrowsers: null,
Expand Down

0 comments on commit e7e8d44

Please sign in to comment.