-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.setup.js
46 lines (38 loc) · 1.07 KB
/
jest.setup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import "@testing-library/jest-dom";
const { TextEncoder, TextDecoder } = require('util');
global.TextEncoder = TextEncoder;
global.TextDecoder = TextDecoder;
// Mock global fetch
global.fetch = jest.fn();
if (typeof Response === 'undefined') {
global.Response = class Response {
constructor(body, init = {}) {
this.body = body;
this.status = init.status || 200;
this.statusText = init.statusText || '';
this.headers = init.headers || {};
this.ok = this.status >= 200 && this.status < 300;
}
json() {
return Promise.resolve(JSON.parse(this.body));
}
text() {
return Promise.resolve(this.body);
}
};
}
if (typeof Request === 'undefined') {
global.Request = class Request {
constructor(url, init = {}) {
this.url = url;
this.method = init.method || 'GET';
this.headers = init.headers || {};
this.body = init.body || null;
}
};
}
if (typeof URL.createObjectURL === 'undefined') {
URL.createObjectURL = jest.fn(() => 'mock-url');
}
console.error = jest.fn();
console.warn = jest.fn();