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.
33 lines
852 B
33 lines
852 B
3 years ago
|
function setupMocking(server) {
|
||
|
server.forAnyRequest().thenPassThrough();
|
||
|
|
||
|
server
|
||
|
.forOptions('https://gas-api.metaswap.codefi.network/networks/1/gasPrices')
|
||
|
.thenCallback(() => {
|
||
|
return {
|
||
|
headers: {
|
||
|
'Access-Control-Allow-Origin': '*',
|
||
|
'Access-Control-Allow-Methods': 'GET,HEAD,PUT,PATCH,POST,DELETE',
|
||
|
'Access-Control-Allow-Headers': 'content-type,x-client-id',
|
||
|
},
|
||
|
statusCode: 200,
|
||
|
};
|
||
|
});
|
||
|
|
||
|
server
|
||
|
.forGet('https://gas-api.metaswap.codefi.network/networks/1/gasPrices')
|
||
|
.thenCallback(() => {
|
||
|
return {
|
||
|
headers: { 'Access-Control-Allow-Origin': '*' },
|
||
|
statusCode: 200,
|
||
|
json: {
|
||
|
SafeGasPrice: '1',
|
||
|
ProposeGasPrice: '2',
|
||
|
FastGasPrice: '3',
|
||
|
},
|
||
|
};
|
||
|
});
|
||
|
}
|
||
|
|
||
|
module.exports = { setupMocking };
|