Skip to content

Commit 60b2cb2

Browse files
committed
test(storage): fix quickstart system test
1 parent d79165f commit 60b2cb2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

storage/system-test/quickstart.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const bucketName = `nodejs-storage-samples-${uuid.v4()}`;
2727

2828
after(async () => {
2929
const bucket = storage.bucket(bucketName);
30-
await bucket.delete().catch(console.error);
30+
await bucket.delete({force: true}).catch(console.error);
3131
});
3232

3333
it('should run the quickstart', async () => {

0 commit comments

Comments
 (0)