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.
 
 

12 lines
290 B

import mock from 'xhr-mock';
export function setup() {
mock.setup();
mock.post('http://upload.com/', (req, res) => {
req.headers({ 'content-length': 100 as unknown as string });
req.body('thisisbody');
return res;
});
}
export const teardown = mock.teardown.bind(mock);