Skip to content

Commit

Permalink
chore: removes spawn task entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
moltar committed Sep 16, 2022
1 parent 44fc584 commit 5be3fac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ cdkConfig.json.addDeletionOverride('output');
*/
project.testTask.steps.forEach((step) => {
if (step.spawn?.startsWith('integ:')) {
Object.assign(step, { spawn: 'true' });
Object.assign(step, {
spawn: undefined,
});
}
});

Expand Down

0 comments on commit 5be3fac

Please sign in to comment.