You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by mi...@apache.org on 2022/09/09 11:30:13 UTC

[superset] branch master updated: test: Fix act error in PropertyModal test (#21400)

This is an automated email from the ASF dual-hosted git repository.

michaelsmolina pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 9318e269b1 test: Fix act error in PropertyModal test (#21400)
9318e269b1 is described below

commit 9318e269b13b48691e375589c6e885f6fd2c3885
Author: Lyndsi Kay Williams <55...@users.noreply.github.com>
AuthorDate: Fri Sep 9 06:30:01 2022 -0500

    test: Fix act error in PropertyModal test (#21400)
---
 .../src/explore/components/PropertiesModal/PropertiesModal.test.tsx    | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/superset-frontend/src/explore/components/PropertiesModal/PropertiesModal.test.tsx b/superset-frontend/src/explore/components/PropertiesModal/PropertiesModal.test.tsx
index 4ea1327603..9b8d4ec2ed 100644
--- a/superset-frontend/src/explore/components/PropertiesModal/PropertiesModal.test.tsx
+++ b/superset-frontend/src/explore/components/PropertiesModal/PropertiesModal.test.tsx
@@ -269,6 +269,9 @@ test('Empty "Certified by" should clear "Certification details"', async () => {
   };
   renderModal(noCertifiedByProps);
 
+  expect(
+    await screen.findByRole('textbox', { name: 'Certification details' }),
+  ).toBeInTheDocument();
   expect(
     screen.getByRole('textbox', { name: 'Certification details' }),
   ).toHaveValue('');