UNPKG

@swapper-finance/sdk

Version:
12 lines (10 loc) 345 B
import { test } from "@playwright/test"; import { TOKENS } from "./tokens"; import { testRouteForToken } from "./route.helper"; test.describe("Route – public", () => { for (const { chainId, tokenId } of TOKENS) { test(`${tokenId}@${chainId}`, async ({ page }) => { await testRouteForToken(page, chainId, tokenId); }); } });