2021-02-04 19:15:23 +01:00
|
|
|
const { strict: assert } = require('assert');
|
2022-01-19 00:08:41 +01:00
|
|
|
const { convertToHexValue, withFixtures } = require('../helpers');
|
2022-10-28 10:42:12 +02:00
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
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',
|
2022-01-19 00:08:41 +01:00
|
|
|
balance: convertToHexValue(25000000000000000000),
|
2020-07-09 23:54:26 +02:00
|
|
|
},
|
|
|
|
],
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-07-09 23:54:26 +02:00
|
|
|
await withFixtures(
|
2022-10-28 10:42:12 +02:00
|
|
|
{
|
|
|
|
fixtures: new FixtureBuilder()
|
|
|
|
.withCurrencyController({
|
|
|
|
currentCurrency: 'php',
|
|
|
|
})
|
|
|
|
.withPreferencesController({
|
|
|
|
preferences: {
|
|
|
|
showFiatInTestnets: true,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.build(),
|
|
|
|
ganacheOptions,
|
|
|
|
title: this.test.title,
|
|
|
|
},
|
2020-07-09 23:54:26 +02:00
|
|
|
async ({ driver }) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
await driver.navigate();
|
2021-04-12 17:32:38 +02:00
|
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
|
|
await driver.press('#password', driver.Key.ENTER);
|
2020-11-03 00:41:28 +01:00
|
|
|
const secondaryBalance = await driver.findElement(
|
2021-04-07 16:57:40 +02:00
|
|
|
'[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
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|