When I make a print function with this code:
report.print('Hello, world!', undefined, done);
it gets converted to this:
report.print('Hello, world!', done);; done();
so I have to do this instead:
report.print('Hello, world!', undefined, () => done());
When I make a print function with this code:
report.print('Hello, world!', undefined, done);
it gets converted to this:report.print('Hello, world!', done);; done();
so I have to do this instead:report.print('Hello, world!', undefined, () => done());