Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: add e2e coverage for sharing public address #8776

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions e2e/specs/wallet/shareAccountDetails.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
'use strict';
import { loginToApp } from '../../viewHelper';
// import WalletView from '../../pages/WalletView';
import FixtureBuilder from '../../fixtures/fixture-builder';
import FixtureServer from '../../fixtures/fixture-server';

import {
loadFixture,
startFixtureServer,
stopFixtureServer,
} from '../../fixtures/fixture-helper';
import TestHelpers from '../../helpers';
import { Regression } from '../../tags';

const fixtureServer = new FixtureServer();

describe(Regression('Account component'), () => {
beforeAll(async () => {
await TestHelpers.reverseServerPort();
const fixture = new FixtureBuilder().build();
await startFixtureServer(fixtureServer);
await loadFixture(fixtureServer, { fixture });
await loginToApp();
});

afterAll(async () => {
await stopFixtureServer(fixtureServer);
});

beforeEach(async () => {
jest.setTimeout(150000);
});

it('share public address', async () => {
await TestHelpers.waitAndTap('main-wallet-account-actions');
await TestHelpers.tap('share-address-action');
});
});
Loading