Skip to content

Commit

Permalink
Remove console logs that occur in import/export
Browse files Browse the repository at this point in the history
The console logs from the import/export test should be removed so that the test doesn’t emit any logs as before.
  • Loading branch information
danieljbruce committed Aug 30, 2023
1 parent 4508c32 commit 6b82544
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions system-test/datastore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1378,17 +1378,12 @@ describe('Datastore', () => {

it('should export, then import entities', async function () {
setupForDelay(this);
console.log('Before set retries');
this.retries(3);
console.log('After set retries');
delay(this);
console.log('After delay');
const [exportOperation] = await datastore.export({bucket});
await exportOperation.promise();
console.log('After export');

const [files] = await bucket.getFiles({maxResults: 1});
console.log('After get files');
const [exportedFile] = files;
assert.ok(exportedFile.name.includes('overall_export_metadata'));

Expand Down

0 comments on commit 6b82544

Please sign in to comment.