diff --git a/tests/2injectiveINJtoCosmoshubAtom.spec.ts b/tests/2injectiveINJtoCosmoshubAtom.spec.ts deleted file mode 100644 index a424990f..00000000 --- a/tests/2injectiveINJtoCosmoshubAtom.spec.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { test } from "./lib/fixtures"; -import { - connectDestination, - connectSource, - e2eTest, - expectPageLoaded, - fillAmount, - initKeplr, - selectDestination, - selectSource, -} from "./utils"; - -test("Injective INJ -> Cosmoshub ATOM", async ({ page }) => { - await initKeplr(); - await expectPageLoaded(page); - - await selectSource(page, "injective", "inj"); - await selectDestination(page, "cosmos hub", "atom"); - - await connectSource(page); - - await fillAmount(page, "0.13"); - - await connectDestination(page); - - await e2eTest(page); -}); diff --git a/tests/3cosmoshubAtomtoNobleUSDC.spec.ts b/tests/3cosmoshubAtomtoNobleUSDC.spec.ts deleted file mode 100644 index a34c12d2..00000000 --- a/tests/3cosmoshubAtomtoNobleUSDC.spec.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { test } from "./lib/fixtures"; -import { - connectDestination, - connectSource, - e2eTest, - expectPageLoaded, - fillAmount, - initKeplr, - selectDestination, - selectSource, -} from "./utils"; - -test("Cosmoshub ATOM -> Noble USDC", async ({ page }) => { - await initKeplr(); - await expectPageLoaded(page); - - await selectSource(page, "cosmos hub", "atom"); - await selectDestination(page, "noble", "usdc"); - - await connectSource(page); - - await fillAmount(page, "0.45"); - - await connectDestination(page); - - await e2eTest(page); -});