2021-02-04 19:15:23 +01:00
|
|
|
const { strict: assert } = require('assert');
|
|
|
|
const { By, Key } = require('selenium-webdriver');
|
|
|
|
const { withFixtures } = require('../helpers');
|
2020-07-09 23:54:26 +02:00
|
|
|
|
|
|
|
describe('Localization', function () {
|
|
|
|
it('can correctly display Philippine peso symbol and code', async function () {
|
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
2020-11-03 00:41:28 +01:00
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
2020-07-09 23:54:26 +02:00
|
|
|
balance: 25000000000000000000,
|
|
|
|
},
|
|
|
|
],
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-07-09 23:54:26 +02:00
|
|
|
await withFixtures(
|
|
|
|
{ fixtures: 'localization', ganacheOptions, title: this.test.title },
|
|
|
|
async ({ driver }) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
await driver.navigate();
|
|
|
|
const passwordField = await driver.findElement(By.css('#password'));
|
|
|
|
await passwordField.sendKeys('correct horse battery staple');
|
|
|
|
await passwordField.sendKeys(Key.ENTER);
|
2020-11-03 00:41:28 +01:00
|
|
|
const secondaryBalance = await driver.findElement(
|
|
|
|
By.css('[data-testid="eth-overview__secondary-currency"]'),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
const secondaryBalanceText = await secondaryBalance.getText();
|
|
|
|
const [fiatAmount, fiatUnit] = secondaryBalanceText
|
|
|
|
.trim()
|
|
|
|
.split(/\s+/u);
|
|
|
|
assert.ok(fiatAmount.startsWith('₱'));
|
|
|
|
assert.equal(fiatUnit, 'PHP');
|
2020-07-14 17:20:41 +02:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|