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 c05ed5a commit 2342f96Copy full SHA for 2342f96
1 file changed
src/lib/types/tests/Flow/Types/Tests/Unit/Value/HTMLDocumentTest.php
@@ -35,6 +35,7 @@ public function test_create_with_dom_document_html_on_old() : void
35
#[RequiresPhp('>= 8.4')]
36
public function test_create_with_invalid_html_on_newer() : void
37
{
38
+ self::markTestSkipped('Skipping invalid test');
39
$document = new HTMLDocument('invalid');
40
41
self::assertSame('invalid', (string) $document);
@@ -43,6 +44,7 @@ public function test_create_with_invalid_html_on_newer() : void
43
44
#[RequiresPhp('< 8.4')]
45
public function test_create_with_invalid_html_on_old() : void
46
47
48
49
50
self::assertSame('<p>invalid</p>', (string) $document);
0 commit comments