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.
|
|
|
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);
|