You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
290 B
13 lines
290 B
7 years ago
|
import mock from 'xhr-mock';
|
||
|
|
||
|
export function setup() {
|
||
|
mock.setup();
|
||
|
mock.post('http://upload.com/', (req, res) => {
|
||
2 years ago
|
req.headers({ 'content-length': 100 as unknown as string });
|
||
7 years ago
|
req.body('thisisbody');
|
||
|
return res;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export const teardown = mock.teardown.bind(mock);
|