Skip to content

Commit c039fc4

Browse files
authored
Update teardown.js
1 parent ac2860f commit c039fc4

File tree

1 file changed

+3
-3
lines changed
  • integration-tests/js-compute/fixtures/secret-store

1 file changed

+3
-3
lines changed

integration-tests/js-compute/fixtures/secret-store/teardown.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ if (process.env.FASTLY_API_TOKEN === undefined) {
1818
zx.verbose = true;
1919
let stores = await (async function() {
2020
try {
21-
return JSON.parse(await zx`fastly secret-store list --json --token $FASTLY_API_TOKEN`)
21+
return JSON.parse(await zx`fastly secret-store list --quiet --json --token $FASTLY_API_TOKEN`)
2222
} catch {
2323
return {data:[]}
2424
}
2525
}())
2626
let links = await (async function() {
2727
try {
28-
return JSON.parse(await zx`fastly resource-link list --json --version latest --token $FASTLY_API_TOKEN`)
28+
return JSON.parse(await zx`fastly resource-link list --quiet --json --version latest --token $FASTLY_API_TOKEN`)
2929
} catch {
3030
return []
3131
}
@@ -47,4 +47,4 @@ if (STORE_ID) {
4747
} catch {}
4848
}
4949

50-
console.log(`Tear down has finished! Took ${(Date.now() - startTime) / 1000} seconds to complete`);
50+
console.log(`Tear down has finished! Took ${(Date.now() - startTime) / 1000} seconds to complete`);

0 commit comments

Comments
 (0)