From b5583ad70f240558982374b8cf2672aa72dd9e00 Mon Sep 17 00:00:00 2001 From: Sean Colsen Date: Mon, 25 Apr 2022 20:24:47 -0400 Subject: [PATCH] Disable flaky E2E test Will be re-enabled in https://github.com/centerofci/mathesar/issues/1285 --- mathesar/tests/integration/test_imports.py | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/mathesar/tests/integration/test_imports.py b/mathesar/tests/integration/test_imports.py index a894927516..9b16c4c3fa 100644 --- a/mathesar/tests/integration/test_imports.py +++ b/mathesar/tests/integration/test_imports.py @@ -1,18 +1,18 @@ -from playwright.sync_api import expect +# from playwright.sync_api import expect -from mathesar.tests.integration.utils.locators import get_table_entry, get_tables_list +# from mathesar.tests.integration.utils.locators import get_table_entry, get_tables_list -def test_import_from_clipboard(page, custom_types_schema_url): - page.goto(custom_types_schema_url) - expect(get_tables_list(page)).to_be_empty() - page.click("[aria-label='New Table']") - page.click("button:has-text('Import Data')") - page.click("text=Copy and Paste Text") - page.fill("textarea", "foo,bar\n2,3") - page.click("button:has-text('Continue')") - page.click("button:has-text('Finish Import')") - expect(get_table_entry(page, "Table 0")).to_be_visible() +# def test_import_from_clipboard(page, custom_types_schema_url): +# page.goto(custom_types_schema_url) +# expect(get_tables_list(page)).to_be_empty() +# page.click("[aria-label='New Table']") +# page.click("button:has-text('Import Data')") +# page.click("text=Copy and Paste Text") +# page.fill("textarea", "foo,bar\n2,3") +# page.click("button:has-text('Continue')") +# page.click("button:has-text('Finish Import')") +# expect(get_table_entry(page, "Table 0")).to_be_visible() # def test_import_from_file(page, custom_types_schema_url):