Skip to content

Commit fe273ac

Browse files
committed
skip test that need mbstring extension
1 parent 6ccd82f commit fe273ac

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/Output/TableTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -642,6 +642,10 @@ public function test_render_with_html_like_tags_in_cell_content(): void
642642

643643
public function test_render_with_unicode_characters_in_cell_content(): void
644644
{
645+
if (! extension_loaded('mbstring')) {
646+
$this->markTestSkipped('The mbstring extension is not installed. This test will faill without it');
647+
}
648+
645649
$rows = [
646650
['name' => 'François', 'greeting' => 'Bonjour'],
647651
['name' => 'Jürgen', 'greeting' => 'Guten Tag'],

0 commit comments

Comments
 (0)