diff --git a/pubspec.yaml b/pubspec.yaml index 2b80cb7c..c26733c5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -54,7 +54,7 @@ dependencies: flutter_colorpicker: ^1.1.0 # For converting HTML to Quill delta - flutter_quill_delta_from_html: ^1.2.5 + flutter_quill_delta_from_html: ^1.3.0 markdown: ^7.2.1 charcode: ^1.3.1 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);