Skip to content

Commit

Permalink
feat!: drop node8 support, support for async iterators (#388)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: The library now supports Node.js v10+. The last version to support Node.js v8 is tagged legacy-8 on NPM.

New feature: methods with pagination now support async iteration.
  • Loading branch information
alexander-fenster authored and grayside committed Nov 3, 2022
1 parent 54a6f37 commit 4468356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud-tasks/test/test.samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('Cloud Task Sample Tests', () => {
before(async () => {
const client = new CloudTasksClient();
projectId = await client.getProjectId();
url = `https://example.com/taskhandler`;
url = 'https://example.com/taskhandler';
});

it('should create a queue', () => {
Expand Down

0 comments on commit 4468356

Please sign in to comment.