1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

Testcontainer debug logging in test-libraries.

This commit is contained in:
Sam Rose 2024-04-03 11:55:38 +01:00
parent c31614a582
commit c764b0f22e
No known key found for this signature in database
2 changed files with 6 additions and 4 deletions

View file

@ -92,6 +92,7 @@ jobs:
test-libraries:
runs-on: ubuntu-latest
env:
DEBUG: testcontainers,testcontainers:exec,testcontainers:build,testcontainers:pull
REUSE_CONTAINERS: true
CONTAINER_NAMESPACE: test-libraries
steps:

View file

@ -1,13 +1,14 @@
#!/bin/bash
set -e
export NODE_OPTIONS="--no-node-snapshot $NODE_OPTIONS"
if [[ -n $CI ]]
then
echo "jest --coverage --maxWorkers=4 --forceExit --bail $@"
jest --coverage --maxWorkers=2 --forceExit --bail $@
export NODE_OPTIONS="--max-old-space-size=4096 --no-node-snapshot $NODE_OPTIONS"
echo "jest --coverage --maxWorkers=4 --forceExit --workerIdleMemoryLimit=2000MB --bail $@"
jest --coverage --maxWorkers=4 --forceExit --workerIdleMemoryLimit=2000MB --bail $@
else
# --maxWorkers performs better in development
export NODE_OPTIONS="--no-node-snapshot $NODE_OPTIONS"
echo "jest --coverage --maxWorkers=2 --forceExit $@"
jest --coverage --maxWorkers=2 --forceExit $@
fi