Skip to content

Commit

Permalink
tests: remove int64 field test (#661)
Browse files Browse the repository at this point in the history
this tests brings potential flakiness: only 6 images can be created per hour per GCP project.
  • Loading branch information
georgiyekkert authored Mar 18, 2022
1 parent 2d45e42 commit 100f153
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions packages/google-cloud-compute/system-test/compute.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,26 +136,6 @@ describe('Compute', () => {
image: NAME,
});
});

it('create and fetch image, test int64 type field', async function () {
this.timeout(10 * 60 * 1000);
const resource = {
name: NAME,
licenseCodes: [5543610867827062957],
sourceImage:
'projects/debian-cloud/global/images/debian-10-buster-v20210721',
};
const [op] = await client.insert({
project,
imageResource: resource,
});
await waitGlobalOperation(op);
const [fetched] = await client.get({
project,
image: NAME,
});
assert.strictEqual(fetched.licenseCodes[0], '5543610867827062957');
});
});

describe('Firewall', () => {
Expand Down

0 comments on commit 100f153

Please sign in to comment.