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

remove ID from address label #1833

Merged
merged 2 commits into from
May 5, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Update e2e.test.ts
  • Loading branch information
Stella Cannefax committed May 5, 2022
commit dc90edd57df4a068972824fd501628542901a31e
6 changes: 3 additions & 3 deletions explorer/client/src/__tests__/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe('End-to-end Tests', () => {
});

// TODO - rewrite this test to use the new transaction data and state object
/*
/*
describe('Transaction Results', () => {
//Specific to transaction tests:
const successTransactionID = 'txCreateSuccess';
Expand Down Expand Up @@ -249,7 +249,7 @@ describe('End-to-end Tests', () => {
it('has correct structure', async () => {
await page.goto(`${BASE_URL}/addresses/${successAddressID}`);

const labels = ['Address ID', 'Owned Objects'];
const labels = ['Address', 'Owned Objects'];

for (let i = 1; i <= labels.length; i++) {
const value = await page.$eval(
Expand Down Expand Up @@ -292,7 +292,7 @@ describe('End-to-end Tests', () => {
const ownerLink = await page.$('div#owner > span:first-child');
await ownerLink.click();

//Looking for object or address ID?
//Looking for object or address?
const lookingFor =
parentIsA === 'addresses' ? '#addressID' : '#objectID';

Expand Down