We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18eba92 commit 80c6a4aCopy full SHA for 80c6a4a
tests/Task/ListItem.test.ts
@@ -78,8 +78,12 @@ describe('list item tests', () => {
78
79
it.each([
80
['- ', true],
81
- [' - ', true],
+ ['* ', false],
82
+ ['+ ', false],
83
['17. ', false],
84
+ [' - ', true],
85
+ ['> - ', false],
86
+ ['> > - ', false],
87
])('should parse description with list item prefix: "%s"', (prefix: string, shouldPass) => {
88
const description = 'stuff';
89
const line = prefix + description;
0 commit comments