Skip to content

Commit 996f770

Browse files
committed
chore: enable all predictive state updates tests
1 parent c3d7a65 commit 996f770

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

typescript-sdk/apps/dojo/e2e/tests/crewAITests/predictvieStateUpdatePage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
import { PredictiveStateUpdatesPage } from "../../pages/crewAIPages/PredictiveStateUpdatesPage";
88

99
test.describe("Predictive Status Updates Feature", () => {
10-
test.fixme("[CrewAI] should interact with agent and approve asked changes", async ({
10+
test("[CrewAI] should interact with agent and approve asked changes", async ({
1111
page,
1212
}) => {
1313
await retryOnAIFailure(async () => {
@@ -44,7 +44,7 @@ test.describe("Predictive Status Updates Feature", () => {
4444
});
4545
});
4646

47-
test.fixme("[CrewAI] should interact with agent and reject asked changes", async ({
47+
test("[CrewAI] should interact with agent and reject asked changes", async ({
4848
page,
4949
}) => {
5050
await retryOnAIFailure(async () => {

typescript-sdk/apps/dojo/e2e/tests/pydanticAITests/predictvieStateUpdatePage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
import { PredictiveStateUpdatesPage } from "../../pages/pydanticAIPages/PredictiveStateUpdatesPage";
88

99
test.describe("Predictive Status Updates Feature", () => {
10-
test.fixme("[PydanticAI] should interact with agent and approve asked changes", async ({
10+
test("[PydanticAI] should interact with agent and approve asked changes", async ({
1111
page,
1212
}) => {
1313
await retryOnAIFailure(async () => {
@@ -44,7 +44,7 @@ test.describe("Predictive Status Updates Feature", () => {
4444
});
4545
});
4646

47-
test.fixme("[PydanticAI] should interact with agent and reject asked changes", async ({
47+
test("[PydanticAI] should interact with agent and reject asked changes", async ({
4848
page,
4949
}) => {
5050
await retryOnAIFailure(async () => {

typescript-sdk/apps/dojo/e2e/tests/serverStarterAllFeaturesTests/predictvieStateUpdatePage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { test, expect, waitForAIResponse, retryOnAIFailure, } from "../../test-i
22
import { PredictiveStateUpdatesPage } from "../../pages/serverStarterAllFeaturesPages/PredictiveStateUpdatesPage";
33

44
test.describe("Predictive Status Updates Feature", () => {
5-
test.fixme("[Server Starter all features] should interact with agent and approve asked changes", async ({ page, }) => {
5+
test("[Server Starter all features] should interact with agent and approve asked changes", async ({ page, }) => {
66
await retryOnAIFailure(async () => {
77
const predictiveStateUpdates = new PredictiveStateUpdatesPage(page);
88

@@ -41,7 +41,7 @@ test.describe("Predictive Status Updates Feature", () => {
4141
});
4242
});
4343

44-
test.fixme("[Server Starter all features] should interact with agent and reject asked changes", async ({ page, }) => {
44+
test("[Server Starter all features] should interact with agent and reject asked changes", async ({ page, }) => {
4545
await retryOnAIFailure(async () => {
4646
const predictiveStateUpdates = new PredictiveStateUpdatesPage(page);
4747

0 commit comments

Comments
 (0)