瀏覽代碼

#600 ignore aggrid test

Falko Schindler 2 年之前
父節點
當前提交
1a6af333da
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      tests/test_aggrid.py

+ 3 - 1
tests/test_aggrid.py

@@ -1,3 +1,4 @@
+import pytest
 from selenium.webdriver.common.action_chains import ActionChains
 from selenium.webdriver.common.keys import Keys
 
@@ -113,8 +114,9 @@ def test_get_selected_rows(screen: Screen):
     screen.should_contain("{'name': 'Alice'}")
 
 
+@pytest.mark.skip(reason='issue #600')
 def test_replace_aggrid(screen: Screen):
-    with ui.row() as container:
+    with ui.row().classes('w-full') as container:
         ui.aggrid({'columnDefs': [{'field': 'name'}], 'rowData': [{'name': 'Alice'}]})
 
     def replace():