Skip to content

Commit

Permalink
test: some fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Allain Magyar <[email protected]>
  • Loading branch information
amagyar-iohk committed Oct 31, 2024
1 parent df7b03f commit 361d16d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,5 +166,5 @@ jobs:
AGENT_VERSION: ${{ steps.build_local_cloud_agent.outputs.agent_version }}
run: |
./docker/run.sh "$AGENT_VERSION"
node dist/suite.spec.js
node ./dist/suite.spec.js
./docker/stop.sh
4 changes: 2 additions & 2 deletions tests/didcomm-tests/docker/postgres/init-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ function create_user_and_database() {

if [ -n "$POSTGRES_MULTIPLE_DATABASES" ]; then
echo "Multiple database creation requested: $POSTGRES_MULTIPLE_DATABASES"
for db in $(echo $POSTGRES_MULTIPLE_DATABASES | tr ',' ' '); do
create_user_and_database $db
for db in $(echo "$POSTGRES_MULTIPLE_DATABASES" | tr ',' ' '); do
create_user_and_database "$db"
done
echo "Multiple databases created"
fi
14 changes: 7 additions & 7 deletions tests/didcomm-tests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"module": "CommonJS"
// "moduleResolution": "node",
// "emitDecoratorMetadata": true,
// "esModuleInterop": true,
// "experimentalDecorators": true,
// "sourceMap": true,
// "declaration": false
"module": "CommonJS",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"sourceMap": true,
"declaration": false
},
"include": ["src/**/*.ts", "test/**/*.ts"],
"exclude": ["node_modules"]
Expand Down

0 comments on commit 361d16d

Please sign in to comment.