mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-09-12 05:53:27 +08:00
34 lines
696 B
Dart
34 lines
696 B
Dart
import 'package:gitjournal/utils/markdown.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
group('Markdown Remove Formatting', () {
|
|
test('Test Headers', () {
|
|
var input = '# Hello\nHow are you?';
|
|
expect(stripMarkdownFormatting(input), 'Hello How are you?');
|
|
});
|
|
|
|
test('Test Header2', () {
|
|
var input = """Test Header
|
|
----------
|
|
|
|
Hello
|
|
""";
|
|
|
|
expect(stripMarkdownFormatting(input), 'Test Header Hello');
|
|
});
|
|
|
|
test('Itemized LIsts', () {
|
|
var input = """Itemized lists
|
|
look like:
|
|
|
|
* this one
|
|
* that one
|
|
""";
|
|
|
|
expect(stripMarkdownFormatting(input),
|
|
'Itemized lists look like: this one that one');
|
|
});
|
|
});
|
|
}
|