From d4ef6975de50aa08c5251f3401eb43829255d896 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Thu, 20 Mar 2025 12:18:38 +0530 Subject: [PATCH 1/2] add a dummy test for aiagents --- .../ClientSide/AIAgents/AgentsDummy_spec.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 app/client/cypress/e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts diff --git a/app/client/cypress/e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts new file mode 100644 index 000000000000..f5a1a7899e7b --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts @@ -0,0 +1,16 @@ + +import { AI_AGENTS_TEST } from "../../../../support/Constants"; +import { + agHelper, +} from "../../../../support/Objects/ObjectsCore"; +import { featureFlagIntercept } from "../../../../support/Objects/FeatureFlags"; + +describe( + `${AI_AGENTS_TEST}: This is a dummy test`, + { tags: ["@tag.AIAgents"] }, + function () { + it("1. This is a dummy test to check if the tag is working.", () => { + expect(true).to.equal(true); + }); + }, +); From 3a79f55e25f3ec59b0394f95569db1b99dfeccf7 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Thu, 20 Mar 2025 12:23:27 +0530 Subject: [PATCH 2/2] fix prettier bug --- .../e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/client/cypress/e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts index f5a1a7899e7b..054ed5e1aff6 100644 --- a/app/client/cypress/e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts +++ b/app/client/cypress/e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts @@ -1,9 +1,4 @@ - import { AI_AGENTS_TEST } from "../../../../support/Constants"; -import { - agHelper, -} from "../../../../support/Objects/ObjectsCore"; -import { featureFlagIntercept } from "../../../../support/Objects/FeatureFlags"; describe( `${AI_AGENTS_TEST}: This is a dummy test`,