chore!: remove ENABLE_REACT_CRUD_VIEWS feature flag (permanently enable) (#19231)

* remove ENABLE_REACT_CRUD_VIEWS feature flag

* docs

* deal with problematic tests

* empty test suite

* skip test

* test conditions changed

* removing the tests instead of skipping
This commit is contained in:
David Aaron Suddjian
2022-03-18 14:00:23 -07:00
committed by GitHub
parent 4f0074a4ae
commit 97abc28a1f
30 changed files with 19 additions and 596 deletions

View File

@@ -290,12 +290,11 @@ class TestDatasetApi(SupersetTestCase):
)
)
schema_values = [
"admin_database",
"information_schema",
"public",
]
expected_response = {
"count": 3,
"count": 2,
"result": [{"text": val, "value": val} for val in schema_values],
}
self.login(username="admin")
@@ -321,8 +320,10 @@ class TestDatasetApi(SupersetTestCase):
pg_test_query_parameter(
query_parameter,
{
"count": 3,
"result": [{"text": "admin_database", "value": "admin_database"}],
"count": 2,
"result": [
{"text": "information_schema", "value": "information_schema"}
],
},
)