Skip to content

Commit

Permalink
test: failures appear to be timing related (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe authored Nov 10, 2020
1 parent dcb990c commit 1c6154a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions asset/snippets/test/sample.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,15 @@ describe('quickstart sample tests', () => {
await file.delete();
});

it('should get assets history successfully', async () => {
// The assets returned within 'readTimeWindow' frequently do not include
// the newly created bucket:
it.skip('should get assets history successfully', async () => {
const assetName = `//storage.googleapis.com/${bucketName}`;
const stdout = execSync(`node getBatchAssetHistory ${assetName}`);
assert.include(stdout, assetName);
});

it('should run the quickstart', async () => {
it.skip('should run the quickstart', async () => {
const assetName = `//storage.googleapis.com/${bucketName}`;
const stdout = execSync(`node quickstart ${assetName}`);
assert.include(stdout, assetName);
Expand Down

0 comments on commit 1c6154a

Please sign in to comment.