From f421a0a1106f1bf4884f1b86bd6cd94df9179080 Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Thu, 24 Apr 2025 20:45:29 +0100 Subject: [PATCH] fix(*): Correct the cucumber syntax --- tests/bdd/steps/agentic_progress.steps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bdd/steps/agentic_progress.steps.ts b/tests/bdd/steps/agentic_progress.steps.ts index 77c66a9..b92fd4c 100644 --- a/tests/bdd/steps/agentic_progress.steps.ts +++ b/tests/bdd/steps/agentic_progress.steps.ts @@ -5,7 +5,7 @@ import { UploadPage } from '../pages/UploadPage.ts'; Before(function () { if (process.env.AI_FOUNDRY_PROJECT_CONNECTION_STRING === 'test') { console.log('Skipping in CI'); - return this.skip(); + return 'skipped'; } });