File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
integration-tests/js-compute/fixtures/secret-store Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ if (process.env.FASTLY_API_TOKEN === undefined) {
1818zx . verbose = true ;
1919let 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} ( ) )
2626let 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` ) ;
You can’t perform that action at this time.
0 commit comments