Skip to content

Commit

Permalink
feat!: drop node8 support, support for async iterators (#227)
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 Ace Nassri committed Nov 15, 2022
1 parent 6eb93c0 commit 2da6dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scheduler/test/test.samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('Server should respond to /log_payload', () => {
it('should log the payload', done => {
const body = Buffer.from('test');
request
.post(`/log_payload`)
.post('/log_payload')
.type('raw')
.send(body)
.expect(200, /Printed job/, done);
Expand Down

0 comments on commit 2da6dc9

Please sign in to comment.