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.
16 lines
281 B
16 lines
281 B
7 years ago
|
import mock from 'xhr-mock';
|
||
|
|
||
|
export function setup() {
|
||
|
mock.setup();
|
||
|
mock.post('http://upload.com/', (req, res) => {
|
||
|
req.headers({
|
||
|
'content-length': 100,
|
||
|
});
|
||
|
req.body('thisisbody');
|
||
|
return res;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
export const teardown = mock.teardown.bind(mock);
|