Skip to content

Commit

Permalink
Merge branch 'main' into ignore-cdktf-log-on-init
Browse files Browse the repository at this point in the history
  • Loading branch information
skorfmann committed Jun 4, 2021
2 parents ac809fc + ca47534 commit f086b48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cdktf-cli/bin/cmds/ui/terraform-context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const parseOutput = (str: string): DeployingResource[] => {
applyState = DeployingResourceApplyState.DESTROYED
break;
default:
applyState = DeployingResourceApplyState.WAITING
return
}

if (resourceMatch && resourceMatch.length >= 0 && resourceMatch[1] != "Warning") {
Expand Down
2 changes: 1 addition & 1 deletion test/jest.setup.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// set a generous global timeout for beforeAll hooks as jest does run the tests anyway even
// if the hook timeout out. This produces weird errors that are hard to trace down
// for reference: https://github.com/facebook/jest/issues/9527
const DEFAULT_TIMEOUT = 300000;
const DEFAULT_TIMEOUT = 500000;
let originalBeforeAll = global.beforeAll;
global.beforeAll = function beforeAllWithDefaultTimeout(setup, timeout = DEFAULT_TIMEOUT) {
return originalBeforeAll(setup, timeout);
Expand Down

0 comments on commit f086b48

Please sign in to comment.