Skip to content

Commit

Permalink
asserted applicationCancelDate
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepestana-aot committed Dec 26, 2024
1 parent 99ec2b3 commit 2bd50bf
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ describe(describeProcessorRootTest(QueueNames.SFASIntegration), () => {
bcagAward: true,
cslpAward: true,
programYearId: true,
applicationCancelDate: true,
},
where: {
individualId: In([950000360, 950000361, 950000362, 950000363]),
Expand All @@ -293,6 +294,7 @@ describe(describeProcessorRootTest(QueueNames.SFASIntegration), () => {
bcagAward: 24,
cslpAward: 500,
programYearId: 20232024,
applicationCancelDate: null,
});
expect(secondSFASPartTimeApplication).toEqual({
startDate: startDate,
Expand All @@ -304,6 +306,7 @@ describe(describeProcessorRootTest(QueueNames.SFASIntegration), () => {
bcagAward: 25,
cslpAward: 600,
programYearId: 20232024,
applicationCancelDate: null,
});
expect(thirdSFASPartTimeApplication).toEqual({
startDate: startDate,
Expand All @@ -315,6 +318,7 @@ describe(describeProcessorRootTest(QueueNames.SFASIntegration), () => {
bcagAward: 26,
cslpAward: 700,
programYearId: null,
applicationCancelDate: null,
});
expect(fourthSFASPartTimeApplication).toEqual({
startDate: startDate,
Expand All @@ -326,6 +330,7 @@ describe(describeProcessorRootTest(QueueNames.SFASIntegration), () => {
bcagAward: 27,
cslpAward: 800,
programYearId: 20232024,
applicationCancelDate: "2024-02-01",
});
},
);
Expand Down

0 comments on commit 2bd50bf

Please sign in to comment.