mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 01:36:22 +00:00
fix issue 2530
This commit is contained in:
@@ -17,7 +17,18 @@ test('getTodoStatus should return a correct hash object', t => {
|
||||
['+ [ ] a\n+ [xtest] a\n', { total: 1, completed: 0 }],
|
||||
['+ [ ] a\n+ foo[x]bar a\n', { total: 1, completed: 0 }],
|
||||
['+ [ ] a\n+ foo[x] bar a\n', { total: 1, completed: 0 }],
|
||||
['+ [ ] a\n+ foo [x]bar a\n', { total: 1, completed: 0 }]
|
||||
['+ [ ] a\n+ foo [x]bar a\n', { total: 1, completed: 0 }],
|
||||
['* [ ] `- [ ] a`\n', { total: 1, completed: 0 }],
|
||||
['+ [ ] `- [ ] a`\n', { total: 1, completed: 0 }],
|
||||
['- [ ] `- [ ] a`\n', { total: 1, completed: 0 }],
|
||||
['- [ ] `- [x] a`\n', { total: 1, completed: 0 }],
|
||||
['- [ ] `- [X] a`\n', { total: 1, completed: 0 }],
|
||||
['- [x] `- [ ] a`\n', { total: 1, completed: 1 }],
|
||||
['- [X] `- [ ] a`\n', { total: 1, completed: 1 }],
|
||||
['- [x] `- [x] a`\n', { total: 1, completed: 1 }],
|
||||
['- [X] `- [X] a`\n', { total: 1, completed: 1 }],
|
||||
[' \t - [X] `- [X] a`\n', { total: 1, completed: 1 }],
|
||||
[' \t - [X] `- [X] a`\n \t - [ ] `- [X] a`\n', { total: 2, completed: 1 }],
|
||||
]
|
||||
|
||||
testCases.forEach(testCase => {
|
||||
|
||||
Reference in New Issue
Block a user