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);
    });
  }
});
