Skip to content

Commit 68a6950

Browse files
committed
Update test names
1 parent 88b1a76 commit 68a6950

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -526,19 +526,19 @@ describe('markdown-toolbar-element', function () {
526526
assertNormalizedList('One\n\n- |Two|\n\nThree\n', orderedList)
527527
})
528528

529-
it('turns selection into list if partial line is selected', function () {
529+
it('turns line into list if partial line is selected', function () {
530530
setVisualValue('One\nT|w|o\nThree\n')
531531
clickToolbar(toolbarItem)
532532
assertNormalizedList('One\n\n- T|w|o\n\nThree\n', orderedList)
533533
})
534534

535-
it('turns selection into list if two lines are selected', function () {
535+
it('turns two lines into list if two lines are selected', function () {
536536
setVisualValue('|One\nTwo|\nThree\n')
537537
clickToolbar(toolbarItem)
538538
assertNormalizedList('|- One\n- Two|\n\nThree\n', orderedList)
539539
})
540540

541-
it('turns selection into list if 2 lines are partially selected', function () {
541+
it('turns two lines into list if 2 lines are partially selected', function () {
542542
setVisualValue('O|ne\nTw|o\nThree\n')
543543
clickToolbar(toolbarItem)
544544
assertNormalizedList('- O|ne\n- Tw|o\n\nThree\n', orderedList)

0 commit comments

Comments
 (0)