@swapper-finance/sdk
Version:
JavaScript SDK form Swapper
12 lines (10 loc) • 345 B
text/typescript
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);
});
}
});