Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 208a19f

Browse files
author
Marcel Gerber
committed
Revert "Disable multiple EditorCommandHandlers tests"
This reverts commit 24e83b1.
1 parent e786c5d commit 208a19f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/spec/EditorCommandHandlers-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323

2424
/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
25-
/*global define, describe, it, xit, expect, beforeEach, afterEach, runs, waitsForDone, beforeFirst, afterLast */
25+
/*global define, describe, it, expect, beforeEach, afterEach, runs, waitsForDone, beforeFirst, afterLast */
2626

2727
define(function (require, exports, module) {
2828
'use strict';
@@ -3651,15 +3651,15 @@ define(function (require, exports, module) {
36513651

36523652
describe("Select Line - editor with visible range", function () {
36533653

3654-
xit("shouldn't select past end of visible range, IP in middle of last visible line", function () {
3654+
it("shouldn't select past end of visible range, IP in middle of last visible line", function () {
36553655
makeEditorWithRange({startLine: 1, endLine: 5});
36563656
myEditor.setSelection({line: 5, ch: 4}, {line: 5, ch: 4});
36573657
CommandManager.execute(Commands.EDIT_SELECT_LINE, myEditor);
36583658

36593659
expectSelection({start: {line: 5, ch: 0}, end: {line: 5, ch: 5}});
36603660
});
36613661

3662-
xit("shouldn't select past end of visible range, IP at start of last visible line", function () {
3662+
it("shouldn't select past end of visible range, IP at start of last visible line", function () {
36633663
makeEditorWithRange({startLine: 1, endLine: 5});
36643664
myEditor.setSelection({line: 5, ch: 0}, {line: 5, ch: 0});
36653665
CommandManager.execute(Commands.EDIT_SELECT_LINE, myEditor);
@@ -3675,7 +3675,7 @@ define(function (require, exports, module) {
36753675
expectSelection({start: {line: 4, ch: 0}, end: {line: 5, ch: 0}});
36763676
});
36773677

3678-
xit("should properly expand multiselection at start and end", function () {
3678+
it("should properly expand multiselection at start and end", function () {
36793679
makeEditorWithRange({startLine: 1, endLine: 5});
36803680
myEditor.setSelections([{start: {line: 1, ch: 5}, end: {line: 1, ch: 5}},
36813681
{start: {line: 5, ch: 0}, end: {line: 5, ch: 0}}]);

0 commit comments

Comments
 (0)