parent
0646495e63
commit
63c8af67b3
3 changed files with 22 additions and 9 deletions
@ -1,7 +0,0 @@ |
||||
import 'package:flutter_test/flutter_test.dart'; |
||||
|
||||
void main() { |
||||
test('No tests for now', () { |
||||
expect(true, true); |
||||
}); |
||||
} |
@ -0,0 +1,19 @@ |
||||
import 'package:dart_quill_delta/dart_quill_delta.dart'; |
||||
import 'package:quill_html_converter/quill_html_converter.dart'; |
||||
import 'package:test/test.dart'; |
||||
|
||||
void main() { |
||||
group('Quill HTML Converter', () { |
||||
test('Example of toHtml', () { |
||||
const html = '<p><br/></p><h1><br/></h1>'; |
||||
final quillDelta = [ |
||||
{'insert': '\n'}, |
||||
{ |
||||
'attributes': {'header': 1}, |
||||
'insert': 'Hello' |
||||
} |
||||
]; |
||||
expect(Delta.fromJson(quillDelta).toHtml().trim(), html.trim()); |
||||
}); |
||||
}); |
||||
} |
Loading…
Reference in new issue