mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 09:46:22 +00:00
Adjust continuous quotation pattern
This commit is contained in:
committed by
Junyoung Choi
parent
edac4d3fed
commit
244a28c7d2
@@ -33,7 +33,9 @@ test('getTodoStatus should return a correct hash object', t => {
|
||||
['> - [ ] a\n- [x] a\n', { total: 2, completed: 1 }],
|
||||
['> + [ ] a\n+ foo [x]bar a\n', { total: 1, completed: 0 }],
|
||||
['> - [X] `- [X] a`\n', { total: 1, completed: 1 }],
|
||||
['> \t - [X] `- [X] a`\n', { total: 1, completed: 1 }]
|
||||
['> \t - [X] `- [X] a`\n', { total: 1, completed: 1 }],
|
||||
['> > - [ ] a\n', { total: 1, completed: 0 }],
|
||||
['> > > - [ ] a\n- [x] a\n', { total: 2, completed: 1 }]
|
||||
]
|
||||
|
||||
testCases.forEach(testCase => {
|
||||
|
||||
Reference in New Issue
Block a user