From 0a702d1680095e4a9bfc8422bb75d43ea39030c7 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 13 Apr 2017 17:23:44 +0200 Subject: [PATCH] Skip obsolete tests for now, but delete them later --- spec/custom-gutter-component-spec.coffee | 2 +- spec/gutter-container-component-spec.coffee | 2 +- spec/lines-yardstick-spec.coffee | 2 +- spec/text-editor-presenter-spec.coffee | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/custom-gutter-component-spec.coffee b/spec/custom-gutter-component-spec.coffee index 731e7bfeb..93b541302 100644 --- a/spec/custom-gutter-component-spec.coffee +++ b/spec/custom-gutter-component-spec.coffee @@ -1,7 +1,7 @@ CustomGutterComponent = require '../src/custom-gutter-component' Gutter = require '../src/gutter' -describe "CustomGutterComponent", -> +xdescribe "CustomGutterComponent", -> [gutterComponent, gutter] = [] beforeEach -> diff --git a/spec/gutter-container-component-spec.coffee b/spec/gutter-container-component-spec.coffee index b62485cad..b09bf009a 100644 --- a/spec/gutter-container-component-spec.coffee +++ b/spec/gutter-container-component-spec.coffee @@ -2,7 +2,7 @@ Gutter = require '../src/gutter' GutterContainerComponent = require '../src/gutter-container-component' DOMElementPool = require '../src/dom-element-pool' -describe "GutterContainerComponent", -> +xdescribe "GutterContainerComponent", -> [gutterContainerComponent] = [] mockGutterContainer = {} diff --git a/spec/lines-yardstick-spec.coffee b/spec/lines-yardstick-spec.coffee index 68fd74804..61e09335e 100644 --- a/spec/lines-yardstick-spec.coffee +++ b/spec/lines-yardstick-spec.coffee @@ -2,7 +2,7 @@ LinesYardstick = require '../src/lines-yardstick' LineTopIndex = require 'line-top-index' {Point} = require 'text-buffer' -describe "LinesYardstick", -> +xdescribe "LinesYardstick", -> [editor, mockLineNodesProvider, createdLineNodes, linesYardstick, buildLineNode] = [] beforeEach -> diff --git a/spec/text-editor-presenter-spec.coffee b/spec/text-editor-presenter-spec.coffee index 2c4b6dbab..2b382b938 100644 --- a/spec/text-editor-presenter-spec.coffee +++ b/spec/text-editor-presenter-spec.coffee @@ -7,7 +7,7 @@ TextEditorPresenter = require '../src/text-editor-presenter' FakeLinesYardstick = require './fake-lines-yardstick' LineTopIndex = require 'line-top-index' -describe "TextEditorPresenter", -> +xdescribe "TextEditorPresenter", -> # These `describe` and `it` blocks mirror the structure of the ::state object. # Please maintain this structure when adding specs for new state fields. describe "::get(Pre|Post)MeasurementState()", ->