Skip to content

Commit

Permalink
Fix ai choose rule test
Browse files Browse the repository at this point in the history
  • Loading branch information
elie222 committed Dec 20, 2024
1 parent 281abd2 commit 32e9d8c
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions apps/web/__tests__/ai-choose-rule.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ describe.skipIf(!isAiTest)("aiChooseRule", () => {
expect(result).toEqual({
rule,
reason: expect.any(String),
actionItems: [],
});
});

Expand All @@ -54,7 +53,6 @@ describe.skipIf(!isAiTest)("aiChooseRule", () => {
expect(result).toEqual({
rule: rule2,
reason: expect.any(String),
actionItems: [],
});
});

Expand Down Expand Up @@ -97,28 +95,6 @@ describe.skipIf(!isAiTest)("aiChooseRule", () => {
expect(result).toEqual({
rule: rule2,
reason: expect.any(String),
actionItems: [
{
bcc: null,
cc: null,
content: expect.any(String),
label: null,
subject: null,
to: null,
type: "REPLY",

labelPrompt: null,
subjectPrompt: null,
contentPrompt: null,
toPrompt: null,
ccPrompt: null,
bccPrompt: null,
createdAt: expect.any(Date),
updatedAt: expect.any(Date),
id: "id",
ruleId: "ruleId",
},
],
});
});
});
Expand Down

0 comments on commit 32e9d8c

Please sign in to comment.