Skip to content

Commit

Permalink
Merge pull request #5 from codelab-app:main
Browse files Browse the repository at this point in the history
fix: forward configuration context to executor
  • Loading branch information
agoldis authored Sep 22, 2022
2 parents 101afc4 + b6b5e42 commit bd4af5e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/executors/currents.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ export default async function currentsExecutor(

const result = await Promise.race([
await runExecutor(
{ project: context.projectName, target: options.cypressExecutor },
{
project: context.projectName,
target: options.cypressExecutor,
configuration: context.configurationName,
},
{ ...options, watch: false },
context
),
Expand Down

0 comments on commit bd4af5e

Please sign in to comment.