Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apitest.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ const callZAppAPIs = async (zappName, apiRequests, preHook, cnstrctrInputs) => {
}
// Clean up and re-throw
shell.exec('docker compose -f docker-compose.zapp.yml down -v');
shell.exec('rm -rf node_modules', { silent: true });
shell.cd('../..');
throw error;
}
Expand All @@ -146,6 +147,7 @@ const callZAppAPIs = async (zappName, apiRequests, preHook, cnstrctrInputs) => {
shell.echo('docker stop failed');
shell.exit(1);
}
shell.exec('rm -rf node_modules', { silent: true });
shell.cd('../..');
await new Promise(resolve => {
setTimeout(resolve, 5000);
Expand Down
Loading