We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2783acf commit 5383f54Copy full SHA for 5383f54
packages/testlab/README.md
@@ -90,7 +90,7 @@ describe('parseParams', () => {
90
91
const args = parseParams(request, [
92
{name: 'count', in: 'query', type: 'number'}
93
- ];
+ ]);
94
95
expect(args).to.eql([10]);
96
})
@@ -179,7 +179,7 @@ import {stubExpressContext, expect} from '@loopback/testlab';
179
180
describe('response writer', () => {
181
it('writes object result to response as JSON', async () => {
182
- const context = stubExpressContext();
+ const context = stubExpressContext();
183
184
writeResultToResponse(context.response, {name: 'Joe'});
185
const result = await context.result;
0 commit comments