Skip to content

Commit 2342f96

Browse files
committed
Mark HTMLDocument tests as skipped
1 parent c05ed5a commit 2342f96

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/lib/types/tests/Flow/Types/Tests/Unit/Value/HTMLDocumentTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public function test_create_with_dom_document_html_on_old() : void
3535
#[RequiresPhp('>= 8.4')]
3636
public function test_create_with_invalid_html_on_newer() : void
3737
{
38+
self::markTestSkipped('Skipping invalid test');
3839
$document = new HTMLDocument('invalid');
3940

4041
self::assertSame('invalid', (string) $document);
@@ -43,6 +44,7 @@ public function test_create_with_invalid_html_on_newer() : void
4344
#[RequiresPhp('< 8.4')]
4445
public function test_create_with_invalid_html_on_old() : void
4546
{
47+
self::markTestSkipped('Skipping invalid test');
4648
$document = new HTMLDocument('invalid');
4749

4850
self::assertSame('<p>invalid</p>', (string) $document);

0 commit comments

Comments
 (0)