We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd892eb commit 1d1d75aCopy full SHA for 1d1d75a
e2e-tests/fixtures/deploy-resources.js
@@ -102,12 +102,22 @@ async function deployResources(resources) {
102
stdio: "pipe",
103
}),
104
);
105
- await waitForChildProcess(
106
- cp.exec(`drasi wait ${source.kind} ${source.name} -t 180`, {
107
- encoding: "utf-8",
108
- }),
109
- source.name,
110
- );
+ try {
+ await waitForChildProcess(
+ cp.exec(`drasi wait ${source.kind} ${source.name} -t 60`, {
+ encoding: "utf-8",
+ }),
+ source.name,
111
+ );
112
+ }
113
+ catch {
114
115
116
117
118
119
120
121
}
122
123
for (let container of containers) {
0 commit comments