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
2727define ( 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