Skip to content

Commit 11dcc17

Browse files
authored
Update README.md
1 parent b2fb75c commit 11dcc17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ afterAll(() => {
4646
});
4747

4848
it('should return the expected response' async () => {
49-
const response = await axios.get(url);
50-
expect(response.data).toBe('Hello world');
49+
const response = await axios.get(url, { params: { name: 'Pearl' } });
50+
expect(response.data).toBe('Hello Pearl');
5151
});
5252
```
5353

0 commit comments

Comments
 (0)