UNPKG

229 BJavaScriptView Raw
1module.exports = () => {
2 const documentNumber = Math.floor(Math.random() * 10);
3
4 return {
5 scope: {
6 documentIds: ['document' + documentNumber + '.xml']
7 },
8 proxy: {
9 'some-proxy': `http://some-proxy.local/`
10 }
11 };
12};