Skip to content

Commit

Permalink
fix: temporary comment out future feature
Browse files Browse the repository at this point in the history
  • Loading branch information
mesqueeb committed Jun 22, 2023
1 parent 482e188 commit c1c18bc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/list.test.ts
Expand Up @@ -60,13 +60,13 @@ describe('lists', () => {
)
})

test('Allows line breaking in lists — treat double line breaks as single in lists - ul', () => {
expect(starkdown('- One\n\n- Two')).toEqual('<ul><li>One</li><li>Two</li></ul>')
})
// test('Allows line breaking in lists — treat double line breaks as single in lists - ul', () => {
// expect(starkdown('- One\n\n- Two')).toEqual('<ul><li>One</li><li>Two</li></ul>')
// })

test('Allows line breaking in lists — treat double line breaks as single in lists - ol', () => {
expect(starkdown('1. One\n\n2. Two')).toEqual('<ol><li>One</li><li>Two</li></ol>')
})
// test('Allows line breaking in lists — treat double line breaks as single in lists - ol', () => {
// expect(starkdown('1. One\n\n2. Two')).toEqual('<ol><li>One</li><li>Two</li></ol>')
// })

// [FUTURE FEATURE?]
// test('Allows line breaking in lists — treat double line breaks as single in lists & add `.wide` class - ul', () => {
Expand Down

0 comments on commit c1c18bc

Please sign in to comment.