(done)
| 91 | } |
| 92 | |
| 93 | function confirmDeleted(done) { |
| 94 | // Note that we need the process.nextTick's because of the |
| 95 | // invisiblyDelete calls |
| 96 | process.nextTick(() => { |
| 97 | process.nextTick(() => { |
| 98 | process.nextTick(() => { |
| 99 | metadata.getBucket(bucketName, log, err => { |
| 100 | assert.strictEqual(err.is.NoSuchBucket, true); |
| 101 | return checkBucketListing(authInfo, bucketName, 0, done); |
| 102 | }); |
| 103 | }); |
| 104 | }); |
| 105 | }); |
| 106 | } |
| 107 | |
| 108 | |
| 109 | describe('deleted flag bucket handling', () => { |
no test coverage detected