We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ee12fd commit abd5c78Copy full SHA for abd5c78
test/e2e/tests/provider-api.spec.js
@@ -47,15 +47,15 @@ describe('MetaMask', function () {
47
await driver.switchToWindowWithTitle('E2E Test Dapp', windowHandles);
48
const switchedNetworkDiv = await driver.waitForSelector({
49
css: '#network',
50
- text: '1',
+ text: '0x1',
51
});
52
const switchedChainIdDiv = await driver.waitForSelector({
53
css: '#chainId',
54
text: '0x1',
55
56
const accountsDiv = await driver.findElement('#accounts');
57
58
- assert.equal(await switchedNetworkDiv.getText(), '1');
+ assert.equal(await switchedNetworkDiv.getText(), '0x1');
59
assert.equal(await switchedChainIdDiv.getText(), '0x1');
60
assert.equal(
61
await accountsDiv.getText(),
0 commit comments