Skip to content

Commit

Permalink
basic marketplace smoke test for all envs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtzData committed Mar 13, 2024
1 parent 91e5c2d commit bc25bc7
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 6 deletions.
3 changes: 2 additions & 1 deletion tests/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"test:prod:smoke:neon_devnet": "npx playwright test --project=Chrome --grep=@SmokeEthNeonDevnet --retries=3 --timeout=60000",
"test:prod:smoke:base_sepolia": "npx playwright test --project=Chrome --grep=@SmokeEthBaseSepolia --retries=3 --timeout=60000",
"test:prod:smoke:zk_sync": "npx playwright test --project=Chrome --grep=@SmokezkSync --retries=3 --timeout=60000",
"test:prod:smoke:stability": "npx playwright test --project=Chrome --grep=@SmokeStability --retries=3 --timeout=60000",
"test:prod:smoke:stability": "npx playwright test --project=Chrome --grep=@SmokeEthStability --retries=3 --timeout=60000",
"test:prod:smoke:base": "npx playwright test --project=Chrome --grep=@SmokeEthBaseMainnet --retries=3 --timeout=60000",
"test:prod:lh:base": "npx playwright test --project=Chrome --grep=@LHSmokeEthBaseMainnet --retries=3 --timeout=280000",
"test:prod:smoke:athens_3": "npx playwright test --project=Chrome --grep=@SmokeEthZetaAthens3 --retries=3 --timeout=60000",
Expand All @@ -43,6 +43,7 @@
"test:prod:smoke:native_accounts": "npx playwright test --project=Chrome --grep=@NativeAccounts --retries=3 --timeout=60000",
"test:prod:smoke:userops": "npx playwright test --project=Chrome --grep=@UserOps --retries=3 --timeout=60000",
"test:prod:smoke:ens": "npx playwright test --project=Chrome --grep=@ENS --retries=3 --timeout=60000",
"test:prod:smoke:marketplace": "npx playwright test --project=Chrome --grep=@Marketplace --retries=3 --timeout=30000",
"test:rollup": "npx playwright test --project=Chrome --grep=@Rollup",
"test:authorized": "npx playwright test --project=Chrome --grep=@Authorized",
"test:notifications": "npx playwright test --project=Chrome --grep=@Notifications",
Expand Down
30 changes: 29 additions & 1 deletion tests/e2e/pages/Marketplace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ export class MarketplacePage extends CommonPage {

SUBMIT_VERIFICATION_TEXT = `text=Your responses have been emailed to you`

DAPPS_PAGE_BUTTON = `text=/DApps/`

apps = {
Aave: 0,
}
Expand All @@ -66,7 +68,11 @@ export class MarketplacePage extends CommonPage {
this.actions = new WebActions(this.page)
}

async open(): Promise<void> {
async open(url?: string): Promise<void> {
if (url != null) {
await this.actions.navigateToURL(`${url}/apps`)

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E tests

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E comparison tests

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Admin console tests

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Tests

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / tests / Tests

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Expected indentation of 12 spaces but found 11

Check failure on line 73 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Expected indentation of 12 spaces but found 11
return

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E tests

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E comparison tests

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Admin console tests

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Tests

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / tests / Tests

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Expected indentation of 12 spaces but found 11

Check failure on line 74 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Expected indentation of 12 spaces but found 11
}
await this.actions.navigateToURL(`${process.env.BLOCKSCOUT_URL}/apps`)
}

Expand All @@ -76,6 +82,28 @@ export class MarketplacePage extends CommonPage {
}
}

async isOn(): Promise<boolean> {
return await this.actions.page.isVisible(this.DAPPS_PAGE_BUTTON)

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E tests

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E comparison tests

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Admin console tests

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Tests

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / tests / Tests

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Redundant use of `await` on a return value

Check failure on line 86 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Redundant use of `await` on a return value
}

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E tests

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E comparison tests

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Admin console tests

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Tests

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / tests / Tests

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Trailing spaces not allowed

Check failure on line 88 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Trailing spaces not allowed
async openMarketplace(): Promise<void> {
await this.actions.clickElement(this.DAPPS_PAGE_BUTTON)
}

async checkAllFeaturesOn(): Promise<void> {
await this.actions.verifyElementIsDisplayed(`text=/Submit app/`)
// await this.actions.verifyElementIsDisplayed(`text=/Suggest ideas/`)
const extendedMenuSelector = `button[id="popover-trigger-:rq:"]`
if (await this.actions.page.isVisible(extendedMenuSelector)) {
await this.actions.clickElement(extendedMenuSelector)
await this.actions.verifyElementIsDisplayed(`section[id="popover-content-:rq:"] >> button >> nth=0`, `no buttons in extended grroup bar`)
}
await this.actions.clickElement(`text=/More info/`)
await this.actions.verifyElementIsDisplayed(`text=/Launch app/`)
await this.actions.verifyElementIsDisplayed(`text=/Overview/`)
await this.actions.verifyElementIsDisplayed(`text=/https:\/\//`)

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E comparison tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / E2E comparison tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Admin console tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Admin console tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / tests / Tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / tests / Tests

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Unnecessary escape character: \/

Check failure on line 104 in tests/e2e/pages/Marketplace.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Unnecessary escape character: \/
}

async addFavoriteApp(name: string): Promise<void> {
await this.actions.page.hover(`${this.APP_TILE_HEADER}${name}`)
await this.actions.clickElement(`${this.APP_STARGAZER}${this.apps[name]}`)
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/functional/ENS.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ test.skip(`@SmokezkSync @ENS zkSync Era ENS components`, async ({ newHomePage })
await newHomePage.checkENSRow()
})

test.skip(`@SmokeStability @ENS zkSync Era ENS components`, async ({ newHomePage }) => {
test.skip(`@SmokeEthStability @ENS zkSync Era ENS components`, async ({ newHomePage }) => {
await newHomePage.open_custom(`https://stability-betanet.blockscout.com/name-domains?only_active=true`)
await newHomePage.checkENSHeader()
await newHomePage.checkENSRow()
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/functional/Smoke.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ test(`@SmokezkSync zkSync Era main page components`, async ({ newHomePage }) =>
await newHomePage.checkBlocksWidget()
})

test(`@SmokeStability zkSync Era main page components`, async ({ newHomePage }) => {
test(`@SmokeEthStability zkSync Era main page components`, async ({ newHomePage }) => {
await newHomePage.open_custom(`https://stability-betanet.blockscout.com/`)
await newHomePage.checkIndexing()
await newHomePage.checkHeader()
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/functional/SmokeBlocks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ test(`@SmokeEthImmutable Immutable blocks`, async ({ context, newHomePage }) =>
})

test(`@SmokeEthShibariumMainnet Shibarium blocks`, async ({ context, newHomePage }) => {
await newHomePage.open_custom(`https://www.shibariumscan.io//blocks`)
await newHomePage.open_custom(`https://www.shibariumscan.io/blocks`)
await newHomePage.checkBlocksNoHeaderNoReward(context)
})

Expand Down
49 changes: 49 additions & 0 deletions tests/e2e/tests/functional/SmokeMarket.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import chalk from 'chalk'
import test from '@lib/BaseTest'

test.describe.configure({ mode: `parallel` })

const urls = [
[`https://eth.blockscout.com`, `@SmokeEthMainnet`],
[`https://eth-goerli.blockscout.com`, `@SmokeEthGoerli`],
[`http://gnosis.blockscout.com`, `@SmokeEthGnosisMainnet`],
[`https://gnosis-chiado.blockscout.com`, `@SmokeEthGnosisChiado`],
[`https://blockscout.com/astar`, `@SmokeEthAstar`],
[`https://blockscout.com/shiden`, `@SmokeEthShiden`],
[`https://blockscout.com/shibuya`, `@SmokeEthShibuya`],
[`https://neon.blockscout.com`, `@SmokeEthNeonMainnet`],
[`https://neon-devnet.blockscout.com`, `@SmokeEthNeonDevnet`],
[`https://zetachain-athens-3.blockscout.com`, `@SmokeEthZetaAthens3`],
[`https://pegasus.lightlink.io`, `@SmokeEthLightlinkPegasus`],
[`https://phoenix.lightlink.io`, `@SmokeEthLightlinkPhoenix`],
[`https://explorer.testnet.immutable.com`, `@SmokeEthImmutable`],
[`https://www.shibariumscan.io`, `@SmokeEthShibariumMainnet`],
[`https://explorer.fuse.io`, `@SmokeEthFuse`],
[`https://explorer.fusespark.io`, `@SmokeEthFuseTestnet`],
[`https://puppyscan.shib.io`, `@SmokeEthShibariumTestnet`],
[`https://optimism.blockscout.com`, `@SmokeEthOptimismMainnet`],
[`https://optimism-goerli.blockscout.com`, `@SmokeEthOptimismGoerli`],
[`https://optimism-sepolia.blockscout.com`, `@SmokeEthOptimismSepolia`],
[`https://rootstock.blockscout.com`, `@SmokeEthRootstock`],
[`https://base.blockscout.com`, `@SmokeEthBaseMainnet`],
[`https://base-sepolia.blockscout.com`, `@SmokeEthBaseSepolia`],
[`https://etc-mordor.blockscout.com`, `@SmokeEthETCMordor`],
[`https://etc.blockscout.com`, `@SmokeEthETCMainnet`],
[`https://explorer.evm.shimmer.network`, `@SmokeEthIotaShimmer`],
[`https://explorer.evm.testnet.shimmer.network`, `@SmokeEthIotaShimmer`],
[`https://zksync-era-mainnet.blockscout.com`, `@SmokeEthzkSync`],
[`https://stability-betanet.blockscout.com`, `@SmokeEthStability`],
]

for (const [url, tag] of urls) {
test(`${url} @Marketplace ${tag} Marketplace Smoke Test`, async ({ marketplace }) => {
await marketplace.open(url)
if (await marketplace.isOn()) {
await marketplace.openMarketplace()
// await marketplace.checkDefaultAppsList()
await marketplace.checkAllFeaturesOn()
} else {
console.log(chalk.yellow(`DApps Marketplace is OFF!`));

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / E2E tests

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / E2E comparison tests

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Admin console tests

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Tests

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / tests / Tests

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Extra semicolon

Check failure on line 46 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Extra semicolon
}
})
}

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / E2E tests

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / E2E comparison tests

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Admin console tests

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibuya)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Tests

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shiden)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_testnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shimmer_mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (zk_sync)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / tests / Tests

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (sepolia)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis_chiado)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (rootstock)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (gnosis)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (pegasus)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon_devnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (athens_3)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (etc_mordor)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (goerli)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (neon)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (astar)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (phoenix)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (immutable)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (optimism_goerli)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (base_sepolia)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (fuse_testnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (shibarium_mainnet)

Newline required at end of file but not found

Check failure on line 49 in tests/e2e/tests/functional/SmokeMarket.test.ts

View workflow job for this annotation

GitHub Actions / Smoke tests (stability)

Newline required at end of file but not found
2 changes: 1 addition & 1 deletion tests/e2e/tests/functional/UserOp.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ test.skip(`@SmokezkSync @UserOps zkSync Era UserOps components`, async ({ newHom
await newHomePage.checkUserOpsRow()
})

test.skip(`@SmokeStability @UserOps zkSync Era UserOps components`, async ({ newHomePage }) => {
test.skip(`@SmokeEthStability @UserOps zkSync Era UserOps components`, async ({ newHomePage }) => {
await newHomePage.open_custom(`https://stability-betanet.blockscout.com/ops`)
await newHomePage.checkUserOpsHeader()
await newHomePage.checkUserOpsRow()
Expand Down

0 comments on commit bc25bc7

Please sign in to comment.