Skip to content

Commit

Permalink
Fix test with ShellOperationRunnerPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
yoyo930021 committed Mar 23, 2023
1 parent 0a83f51 commit 989c2bb
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ describe(ShellOperationRunnerPlugin.name, () => {

const fakeCreateOperationsContext: Pick<
ICreateOperationsContext,
'phaseSelection' | 'projectSelection' | 'projectsInUnknownState'
'phaseOriginal' | 'phaseSelection' | 'projectSelection' | 'projectsInUnknownState'
> = {
phaseOriginal: echoCommand.phases,
phaseSelection: echoCommand.phases,
projectSelection: new Set(rushConfiguration.projects),
projectsInUnknownState: new Set(rushConfiguration.projects)
Expand Down Expand Up @@ -86,8 +87,9 @@ describe(ShellOperationRunnerPlugin.name, () => {

const fakeCreateOperationsContext: Pick<
ICreateOperationsContext,
'phaseSelection' | 'projectSelection' | 'projectsInUnknownState'
'phaseOriginal' | 'phaseSelection' | 'projectSelection' | 'projectsInUnknownState'
> = {
phaseOriginal: echoCommand.phases,
phaseSelection: echoCommand.phases,
projectSelection: new Set(rushConfiguration.projects),
projectsInUnknownState: new Set(rushConfiguration.projects)
Expand Down

0 comments on commit 989c2bb

Please sign in to comment.