Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions test/ruby_ui/table_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,12 @@ def test_render_with_all_items

assert_match(/Total/, output)
end

def test_render_table_wrapper_has_relative_class
output = phlex do
RubyUI.Table {}
end

assert_match(/class="relative w-full overflow-auto"/, output)
end
end