We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2fb75c commit 11dcc17Copy full SHA for 11dcc17
README.md
@@ -46,8 +46,8 @@ afterAll(() => {
46
});
47
48
it('should return the expected response' async () => {
49
- const response = await axios.get(url);
50
- expect(response.data).toBe('Hello world');
+ const response = await axios.get(url, { params: { name: 'Pearl' } });
+ expect(response.data).toBe('Hello Pearl');
51
52
```
53
0 commit comments