-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#1908 - E2E Tests - Workflow - Full-time Grants Eligibility #1949
#1908 - E2E Tests - Workflow - Full-time Grants Eligibility #1949
Conversation
@@ -1644,7 +1644,7 @@ or (calculatedDataPartnerFedralProvincialPDReceiptCost > 0)</bpmn:conditionEx | |||
<bpmn:intermediateThrowEvent id="Event_1ki3afc" name="awardEligibilitySBSD"> | |||
<bpmn:extensionElements> | |||
<zeebe:ioMapping> | |||
<zeebe:output source="=if institutionType = "BC Public" or "BC Private" then ( if ((calculatedDataFederalAssessedNeed + calculatedDataProvincialAssessedNeed) >= 1) and studentPDStatus = true then true else false ) else false" target="awardEligibilitySBSD" /> | |||
<zeebe:output source="=if institutionType = "BC Public" or institutionType = "BC Private" then ( if ((calculatedDataFederalAssessedNeed + calculatedDataProvincialAssessedNeed) >= 1) and studentPDStatus = true then true else false ) else false" target="awardEligibilitySBSD" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -12,7 +12,7 @@ import { | |||
} from "../../test-utils"; | |||
import { PROGRAM_YEAR } from "../constants/program-year.constants"; | |||
|
|||
describe(`E2E Test Workflow fulltime-assessment-${PROGRAM_YEAR}`, () => { | |||
describe(`E2E Test Workflow fulltime-assessment-${PROGRAM_YEAR}.`, () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
...4/fulltime-assessment/eligibility/fulltime-assessment-2023-2024-eligibility-CSGD.e2e-spec.ts
Show resolved
Hide resolved
sources/packages/backend/workflow/test/test-utils/factories/student-dependent.ts
Show resolved
Hide resolved
sources/packages/backend/workflow/test/test-utils/factories/student-dependent.ts
Show resolved
Hide resolved
...4/fulltime-assessment/eligibility/fulltime-assessment-2023-2024-eligibility-CSGD.e2e-spec.ts
Outdated
Show resolved
Hide resolved
...4/fulltime-assessment/eligibility/fulltime-assessment-2023-2024-eligibility-CSGD.e2e-spec.ts
Outdated
Show resolved
Hide resolved
...4/fulltime-assessment/eligibility/fulltime-assessment-2023-2024-eligibility-CSGD.e2e-spec.ts
Outdated
Show resolved
Hide resolved
...4/fulltime-assessment/eligibility/fulltime-assessment-2023-2024-eligibility-CSGP.e2e-spec.ts
Show resolved
Hide resolved
sources/packages/backend/workflow/test/models/assessment.model.ts
Outdated
Show resolved
Hide resolved
sources/packages/backend/workflow/test/models/assessment.model.ts
Outdated
Show resolved
Hide resolved
* @param assessmentConsolidatedData assessment data. | ||
* @returns result of the workflow execution. | ||
*/ | ||
export async function executeFulltimeAssessmentForProgramYear( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work with the award. now we know the eligibility conditions 👍 Added some comments
Kudos, SonarCloud Quality Gate passed!
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work with FT grant eligibility. Thanks for doing the changes @andrewsignori-aot 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
@@ -27,7 +27,7 @@ | |||
"test:e2e:workers": "npm run migration:run && cross-env ENVIRONMENT=test jest --collect-coverage --verbose --config ./apps/workers/test/jest-e2e.json --forceExit", | |||
"test:e2e:workers:local": "cross-env ENVIRONMENT=test jest --collect-coverage --verbose --config ./apps/workers/test/jest-e2e.json --forceExit", | |||
"test:e2e:workflow": "npm run deploy:camunda:definitions && cross-env ENVIRONMENT=test jest --verbose --config ./workflow/test/jest-e2e.json --forceExit", | |||
"test:e2e:workflow:local": "cross-env ENVIRONMENT=test jest --verbose --config ./workflow/test/jest-e2e.json --forceExit", | |||
"test:e2e:workflow:local": "cross-env ENVIRONMENT=test TZ=UTC jest --verbose --config ./workflow/test/jest-e2e.json --forceExit", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, nice work @andrewsignori-aot
fulltime-assessment-*
.2022-2023
in the next PR to avoid extra work on this one.