We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ce10a8 commit 7b6e5aeCopy full SHA for 7b6e5ae
__tests__/tests.js
@@ -31,7 +31,12 @@ test('Testing failure of Fetch with invalid API', () => {
31
});
32
33
34
-test('Testing success of Fetch with valid API', async () => {
+test('Testing success of Fetch with valid API - 1', async () => {
35
const data = await utils.fetchData("https://api.artic.edu/api/v1/artworks/129884");
36
expect(data).toStrictEqual(expect.anything());
37
38
+
39
+test('Testing success of Fetch with valid API - 2', async () => {
40
+ const data = await utils.fetchData("https://api.genderize.io/?name=peter");
41
+ expect(data).toStrictEqual(expect.anything());
42
+});
0 commit comments