Skip to content

Commit

Permalink
Merge branch 'main' into cypress-integration-test-workflow
Browse files Browse the repository at this point in the history
merge in main
  • Loading branch information
IGallupSoCo committed Oct 3, 2024
2 parents d3b9cbb + 15ff005 commit 7d3ad91
Show file tree
Hide file tree
Showing 189 changed files with 3,805 additions and 2,613 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ jobs:
name: Unit Tests
needs: [fetch-allow-lists, tests-prep]
timeout-minutes: 30
runs-on: ubuntu-latest
runs-on: ubuntu-16-cores-latest
outputs:
app_folders: ${{ steps.get-changed-apps.outputs.folders }}
changed-files: ${{ steps.get-changed-apps.outputs.changed_files }}
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:
output-type: 'folder'

- name: Run unit tests
run: yarn test:unit:gha ${APP_FOLDERS:+"{script,$APP_FOLDERS}/**/*.unit.spec.js?(x)"} --coverage
run: yarn test:unit:gha ${APP_FOLDERS:+"{script,$APP_FOLDERS}/**/*.unit.spec.js?(x)"} --coverage --log-level verbose
env:
MOCHA_FILE: test-results/unit-tests.xml
CHANGED_FILES: ${{ steps.get-changed-apps.outputs.changed_files }}
Expand Down Expand Up @@ -417,7 +417,7 @@ jobs:
path: .

- name: Run unit tests
run: yarn test:unit:gha ${APP_FOLDERS:+"{script,$APP_FOLDERS}/**/*.unit.spec.js?(x)"} --coverage --log-level trace
run: yarn test:unit:gha ${APP_FOLDERS:+"{script,$APP_FOLDERS}/**/*.unit.spec.js?(x)"} --log-level trace
env:
MOCHA_FILE: test-results/unit-tests.xml
APP_FOLDERS: ${{ steps.get-changed-apps.outputs.folders }}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@
"@babel/runtime": "^7.15.4",
"@datadog/browser-logs": "^5.8.0",
"@datadog/browser-rum": "^4.49.0",
"@department-of-veterans-affairs/component-library": "^46.4.0",
"@department-of-veterans-affairs/css-library": "^0.12.0",
"@department-of-veterans-affairs/formation": "11.0.23",
"@department-of-veterans-affairs/component-library": "^47.0.0",
"@department-of-veterans-affairs/css-library": "^0.12.1",
"@department-of-veterans-affairs/formation": "11.0.26",
"@department-of-veterans-affairs/react-jsonschema-form": "^1.2.5",
"@department-of-veterans-affairs/va-forms-system-core": "1.6.1",
"@department-of-veterans-affairs/vagov-platform": "^0.0.1",
Expand Down
2 changes: 1 addition & 1 deletion script/github-actions/run-unit-tests-gha.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ if (testsToVerify === null) {
: `--recursive ${glob.sync(updatedPath)}`;
const command = `LOG_LEVEL=${options[
'log-level'
].toLowerCase()} ${testRunner} --max-old-space-size=8192 --config ${configFile} ${testsToRun.replace(
].toLowerCase()} ${testRunner} --max-old-space-size=32768 --config ${configFile} ${testsToRun.replace(
/,/g,
' ',
)} `;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const mailingAddressUpdateReceivedPrefillTaskGreen = {
id: '',
type: 'async_transaction_va_profile_address_transactions',
attributes: {
transactionId: 'mock-update-mailing-address-transaction-id',
transactionId: 'mock-update-mailing-address-success-transaction-id',
transactionStatus: 'RECEIVED',
type: 'AsyncTransaction::VAProfile::AddressTransaction',
metadata: [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const homePhoneUpdateReceivedPrefillTaskPurple = {
id: '',
type: 'async_transaction_va_profile_telephone_transactions',
attributes: {
transactionId: 'mock-update-home-phone-transaction-id',
transactionId: 'mock-update-home-phone-success-transaction-id',
transactionStatus: 'RECEIVED',
type: 'AsyncTransaction::VAProfile::TelephoneTransaction',
metadata: [],
Expand Down
Loading

0 comments on commit 7d3ad91

Please sign in to comment.