'footer', 'text' => '
Footer text. link
', 'styles' => [ 'block' => [ 'backgroundColor' => 'transparent', ], 'text' => [ 'fontColor' => '#222222', 'fontFamily' => 'Roboto', 'fontSize' => '12px', 'textAlign' => 'center', ], 'link' => [ 'fontColor' => '#689f2c', 'textDecoration' => 'none', ], ], ]; function testItRendersCorrectly() { $output = Footer::render($this->block); $expected_result = 'Footer text. link
'; $output = Footer::render($this->block); expect($output)->contains('link'); } }