mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
d054175b2e
* Fix an issue with installing snaps with 0 permissions * Fix some issues * Fix lint * Fix code fencing * UI improvements for no permission use-case * Fix redirect * Delay BIP44 test slightly * Add more delay * Fix update UI
86 lines
2.6 KiB
JavaScript
86 lines
2.6 KiB
JavaScript
const { strict: assert } = require('assert');
|
|
const { withFixtures } = require('../helpers');
|
|
const { PAGES } = require('../webdriver/driver');
|
|
const { TEST_SNAPS_WEBSITE_URL } = require('./enums');
|
|
|
|
describe('Test Snap Error', function () {
|
|
it('can pop up a snap error and see the error', async function () {
|
|
const ganacheOptions = {
|
|
accounts: [
|
|
{
|
|
secretKey:
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
balance: 25000000000000000000,
|
|
},
|
|
],
|
|
};
|
|
await withFixtures(
|
|
{
|
|
fixtures: 'imported-account',
|
|
ganacheOptions,
|
|
title: this.test.title,
|
|
},
|
|
async ({ driver }) => {
|
|
await driver.navigate();
|
|
|
|
// enter pw into extension
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
// navigate to test snaps page and connect
|
|
await driver.driver.get(TEST_SNAPS_WEBSITE_URL);
|
|
await driver.fill('#snapId2', 'npm:@metamask/test-snap-error');
|
|
await driver.clickElement('#connectError');
|
|
|
|
// switch to metamask extension and click connect
|
|
await driver.waitUntilXWindowHandles(2, 5000, 10000);
|
|
let windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle(
|
|
'MetaMask Notification',
|
|
windowHandles,
|
|
);
|
|
await driver.clickElement(
|
|
{
|
|
text: 'Connect',
|
|
tag: 'button',
|
|
},
|
|
10000,
|
|
);
|
|
|
|
await driver.delay(2000);
|
|
|
|
// approve install of snap
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle(
|
|
'MetaMask Notification',
|
|
windowHandles,
|
|
);
|
|
await driver.clickElement({
|
|
text: 'Approve & install',
|
|
tag: 'button',
|
|
});
|
|
|
|
// click send inputs on test snap page
|
|
await driver.waitUntilXWindowHandles(1, 5000, 10000);
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
|
await driver.delay(1000);
|
|
await driver.clickElement('#sendError');
|
|
|
|
await driver.navigate(PAGES.HOME);
|
|
|
|
const error = await driver.findElement(
|
|
'.home-notification__content-container',
|
|
);
|
|
const text = await error.getText();
|
|
assert.equal(
|
|
text.includes(
|
|
"Snap Error: 'random error inside'. Error Code: '-32603'",
|
|
),
|
|
true,
|
|
);
|
|
},
|
|
);
|
|
});
|
|
});
|