Skip to content

Commit bc242c4

Browse files
authored
Merge pull request #92066 from Expensify/ionatan_moreworkersforjest
Use 6 workers in jest tests
2 parents 3d324c7 + 83634fa commit bc242c4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
key: ${{ runner.os }}-jest
4040

4141
- name: Jest tests
42-
run: npm test -- --silent --shard=${{ fromJSON(matrix.chunk) }}/${{ strategy.job-total }} --maxWorkers=2 --coverage --coverageDirectory=coverage/shard-${{ matrix.chunk }}
42+
run: npm test -- --silent --shard=${{ fromJSON(matrix.chunk) }}/${{ strategy.job-total }} --maxWorkers=6 --coverage --coverageDirectory=coverage/shard-${{ matrix.chunk }}
4343

4444
- name: Upload coverage to Codecov (PRs - tokenless)
4545
if: ${{ github.event_name == 'pull_request' }}

src/libs/Middleware/Logging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function serializeLoggingData<T extends Record<string, unknown> | undefined>(log
3737
}
3838

3939
function logRequestDetails<TKey extends OnyxKey>(message: string, request: Request<TKey>, response?: Response<TKey> | void) {
40-
// Don't log about log or else we'd cause an infinite loop
40+
// Don't log about log or else we'd cause an infinite loop.
4141
if (request.command === 'Log') {
4242
return;
4343
}

0 commit comments

Comments
 (0)