From bf3e501e0fadd8ba019612078b1d95c6ee8b2bbe Mon Sep 17 00:00:00 2001 From: Vonny Jap Date: Thu, 5 Sep 2024 23:03:53 -0700 Subject: [PATCH] fix: enable pipeline template functional tests (#3189) --- features/pipeline-templates.feature | 2 ++ package.json | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/features/pipeline-templates.feature b/features/pipeline-templates.feature index 9ce1fa554..01c8be1d3 100644 --- a/features/pipeline-templates.feature +++ b/features/pipeline-templates.feature @@ -1,5 +1,7 @@ @parallel @pipelinetemplate +@x1 + Feature: Pipeline Templates Pipeline template is simply an existing configuration for a pipeline that can be reused. diff --git a/package.json b/package.json index 56ba37fb9..7680717b1 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,8 @@ "start": "./bin/server", "debug": "node --nolazy ./bin/server", "profile": "node --prof ./bin/server", - "functional": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta) and (not @pipelinetemplate)' --retry 2 --fail-fast --exit", - "functional-beta": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and (not @x1) and (not @pipelinetemplate)' --retry 2 --fail-fast --exit", + "functional": "cucumber-js --format=progress --tags '(not @ignore) and (not @beta)' --retry 2 --fail-fast --exit", + "functional-beta": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and (not @x1)' --retry 2 --fail-fast --exit", "functional-beta-x1": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod) and @x1' --retry 2 --fail-fast --exit", "functional-dev": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod)' --retry 2 --fail-fast --exit", "create-test-user": "node -e 'require(\"./features/scripts/create-test-user.js\")()'",