From cec9ddcbfe1144c0ac44b726e7f0fcd8f43cc7e4 Mon Sep 17 00:00:00 2001 From: CatHood0 Date: Thu, 11 Jul 2024 01:50:02 -0400 Subject: [PATCH] fix: removed iframe parse test since package doesn't support it --- test/utils/delta_x_test.dart | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/utils/delta_x_test.dart b/test/utils/delta_x_test.dart index e4367da8..5fc12dad 100644 --- a/test/utils/delta_x_test.dart +++ b/test/utils/delta_x_test.dart @@ -9,9 +9,6 @@ void main() { const htmlWithUnderline = '

This is a normal sentence, and this section has greater underline'; - const htmlWithIframeVideo = - ''; - const htmlWithVideoTag = ''; @@ -55,11 +52,6 @@ void main() { expect(delta, expectedDeltaUnderline); }); - test('should detect iframe and parse correctly', () { - final delta = DeltaX.fromHtml(htmlWithIframeVideo); - expect(delta, expectedDeltaVideo); - }); - test('should detect video and parse correctly', () { final delta = DeltaX.fromHtml(htmlWithVideoTag); expect(delta, expectedDeltaVideo);