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 0000000000..054ed5e1af --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/AIAgents/AgentsDummy_spec.ts @@ -0,0 +1,11 @@ +import { AI_AGENTS_TEST } from "../../../../support/Constants"; + +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); + }); + }, +);