From 802a20449a4268d6e5d947c420a7351ec6098f5c Mon Sep 17 00:00:00 2001 From: Daniel <80175477+dan437@users.noreply.github.com> Date: Fri, 28 Oct 2022 20:34:10 +0200 Subject: [PATCH] Exclude E2E tests for swaps until they are stabilised (#16303) --- test/e2e/run-all.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e/run-all.js b/test/e2e/run-all.js index 2623f9ba9..ad538f3f1 100644 --- a/test/e2e/run-all.js +++ b/test/e2e/run-all.js @@ -51,7 +51,8 @@ async function main() { if (!snaps) { testPaths = [ ...testPaths, - ...(await getTestPathsForTestDir(path.join(__dirname, 'swaps'))), + // TODO: Enable the next line once the Swaps E2E tests are stable. + // ...(await getTestPathsForTestDir(path.join(__dirname, 'swaps'))), path.join(__dirname, 'metamask-ui.spec.js'), ]; }