We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ccd82f commit fe273acCopy full SHA for fe273ac
tests/Output/TableTest.php
@@ -642,6 +642,10 @@ public function test_render_with_html_like_tags_in_cell_content(): void
642
643
public function test_render_with_unicode_characters_in_cell_content(): void
644
{
645
+ if (! extension_loaded('mbstring')) {
646
+ $this->markTestSkipped('The mbstring extension is not installed. This test will faill without it');
647
+ }
648
+
649
$rows = [
650
['name' => 'François', 'greeting' => 'Bonjour'],
651
['name' => 'Jürgen', 'greeting' => 'Guten Tag'],
0 commit comments