Skip to content

Commit 60e7ea5

Browse files
committed
update mocks in requestHandlerTest
1 parent 4a3d43c commit 60e7ea5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/requestHandlerTest.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('RequestHandler tests', async () => {
3939
});
4040

4141
it('returns invalid response type', async () => {
42-
const htmlResponse = 'https://run.mocky.io/v3/1ed32821-e4d3-4fe1-a975-f1f50f380354';
42+
const htmlResponse = 'https://run.mocky.io/v3/8208632b-ab12-4ddd-b31b-05fc8169df04';
4343
try {
4444
let res = await requestHandler(htmlResponse);
4545
} catch (e) {
@@ -48,7 +48,7 @@ describe('RequestHandler tests', async () => {
4848
});
4949

5050
it('returns text', async () => {
51-
const htmlResponse = 'https://run.mocky.io/v3/34ada513-308c-4cf6-85ad-43139b9525c8';
51+
const htmlResponse = 'https://run.mocky.io/v3/ccad6260-346f-4721-b2d4-e13519a6f72e';
5252
let res = await requestHandler(htmlResponse);
5353
assert.deepEqual(res, 'working');
5454
});

0 commit comments

Comments
 (0)