Skip to content

Commit 3b96a7d

Browse files
author
Amir Moualem
authored
Merge pull request #301 from snyk/chore/polish
chore: missing await
2 parents 33f52c8 + 605da92 commit 3b96a7d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/system/kind.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@ tap.test('Kubernetes-Monitor with KinD', async (t) => {
5050
// KinD
5151
await kind.createCluster();
5252
await kind.exportKubeConfig();
53-
Promise.all([
53+
54+
await Promise.all([
5455
kubectl.createNamespace('snyk-monitor'),
5556
kubectl.createNamespace('services'),
5657
]);
58+
5759
// wait for default service account
5860
await kubectl.waitForServiceAccount('default', 'default');
5961

0 commit comments

Comments
 (0)