Skip to content

Commit

Permalink
feat: Add IFU support for CI (#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickevansuk authored Aug 2, 2023
1 parent 5fbbf22 commit e95024d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/reference-implementation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
mode: ['random', 'controlled']
profile: ['all-features', 'single-seller', 'no-payment-reconciliation', 'no-auth', 'no-tax-calculation', 'prepayment-always-required']
profile: ['all-features', 'single-seller', 'no-payment-reconciliation', 'no-auth', 'no-tax-calculation', 'prepayment-always-required', 'facilityuse-has-slots']
flow: ['simple', 'approval']
include:
- mode: 'random'
Expand Down
8 changes: 8 additions & 0 deletions config/.example.facilityuse-has-slots.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"integrationTests": {
"bookableOpportunityTypesInScope": {
"IndividualFacilityUseSlot": false,
"FacilityUseSlot": true
}
}
}
4 changes: 2 additions & 2 deletions config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
"additionalReporters": [],
"bookableOpportunityTypesInScope": {
"ScheduledSession": true,
"FacilityUseSlot": true,
"IndividualFacilityUseSlot": false,
"IndividualFacilityUseSlot": true,
"FacilityUseSlot": false,
"CourseInstance": false,
"CourseInstanceSubEvent": false,
"HeadlineEvent": false,
Expand Down

0 comments on commit e95024d

Please sign in to comment.