mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
f47cfbbb3e
The `assert` module has two modes: "Legacy" and "strict". When using strict mode, the "strict" version of each assertion method is implied. Whereas in legacy mode, by default it will use the deprecated, "loose" version of each assertion. We now use strict mode everywhere. A few tests required updates where they were asserting the wrong thing, and it was passing beforehand due to the loose matching.
50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
import { strict as assert } from 'assert';
|
|
import {
|
|
KOVAN_CHAIN_ID,
|
|
MAINNET_CHAIN_ID,
|
|
RINKEBY_CHAIN_ID,
|
|
ROPSTEN_CHAIN_ID,
|
|
} from '../../../shared/constants/network';
|
|
import getBuyEthUrl from './buy-eth-url';
|
|
|
|
describe('buy-eth-url', function () {
|
|
const mainnet = {
|
|
chainId: MAINNET_CHAIN_ID,
|
|
amount: 5,
|
|
address: '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc',
|
|
};
|
|
const ropsten = {
|
|
chainId: ROPSTEN_CHAIN_ID,
|
|
};
|
|
const rinkeby = {
|
|
chainId: RINKEBY_CHAIN_ID,
|
|
};
|
|
const kovan = {
|
|
chainId: KOVAN_CHAIN_ID,
|
|
};
|
|
|
|
it('returns wyre url with address for network 1', function () {
|
|
const wyreUrl = getBuyEthUrl(mainnet);
|
|
|
|
assert.equal(
|
|
wyreUrl,
|
|
'https://pay.sendwyre.com/purchase?dest=ethereum:0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc&destCurrency=ETH&accountId=AC-7AG3W4XH4N2&paymentMethod=debit-card',
|
|
);
|
|
});
|
|
|
|
it('returns metamask ropsten faucet for network 3', function () {
|
|
const ropstenUrl = getBuyEthUrl(ropsten);
|
|
assert.equal(ropstenUrl, 'https://faucet.metamask.io/');
|
|
});
|
|
|
|
it('returns rinkeby dapp for network 4', function () {
|
|
const rinkebyUrl = getBuyEthUrl(rinkeby);
|
|
assert.equal(rinkebyUrl, 'https://www.rinkeby.io/');
|
|
});
|
|
|
|
it('returns kovan github test faucet for network 42', function () {
|
|
const kovanUrl = getBuyEthUrl(kovan);
|
|
assert.equal(kovanUrl, 'https://github.com/kovan-testnet/faucet');
|
|
});
|
|
});
|