We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04d0da3 commit f818f7dCopy full SHA for f818f7d
tests/fixtures/make-twig-component/tests/it_generates_live_component.php
@@ -10,7 +10,9 @@ public function testController()
10
{
11
$output = self::getContainer()->get('twig')->createTemplate("{{ component('{name}') }}")->render();
12
13
- $this->assertStringContainsString('<div data-controller="live" data-live-url-value=', $output);
+ $this->assertStringContainsString('<div data-controller="live"', $output);
14
+ $this->assertStringContainsString('data-live-name-value="', $output);
15
+ $this->assertStringContainsString('data-live-url-value=', $output);
16
$this->assertStringContainsString('<!-- component html -->', $output);
17
}
18
0 commit comments