From b6b5e42b339cb1a56ae3123f3d34bb5780f97321 Mon Sep 17 00:00:00 2001 From: Webber Wang Date: Fri, 16 Sep 2022 02:02:41 +0800 Subject: [PATCH] fix: forward configuration context to executor --- src/executors/currents.impl.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/executors/currents.impl.ts b/src/executors/currents.impl.ts index 1fed486..01e24e1 100644 --- a/src/executors/currents.impl.ts +++ b/src/executors/currents.impl.ts @@ -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 ),