Rename TestUtils.ts to TestUtils.test.ts

This will allow it to be excluded when we do #863
This commit is contained in:
Daniel Imms
2017-08-07 22:40:15 -07:00
parent b3ad3eff8b
commit b42a9039cc
7 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import { assert } from 'chai';
import { ITerminal } from './Interfaces';
import { Buffer } from './Buffer';
import { CircularList } from './utils/CircularList';
import { MockTerminal } from './utils/TestUtils';
import { MockTerminal } from './utils/TestUtils.test';
const INIT_COLS = 80;
const INIT_ROWS = 24;
+1 -1
View File
@@ -6,7 +6,7 @@ import { assert } from 'chai';
import { ITerminal } from './Interfaces';
import { BufferSet } from './BufferSet';
import { Buffer } from './Buffer';
import { MockTerminal } from './utils/TestUtils';
import { MockTerminal } from './utils/TestUtils.test';
describe('BufferSet', () => {
let terminal: ITerminal;
+1 -1
View File
@@ -5,7 +5,7 @@
import { assert } from 'chai';
import { InputHandler } from './InputHandler';
import { wcwidth } from './InputHandler';
import { MockInputHandlingTerminal } from './utils/TestUtils';
import { MockInputHandlingTerminal } from './utils/TestUtils.test';
describe('InputHandler', () => {
describe('save and restore cursor', () => {
+1 -1
View File
@@ -10,7 +10,7 @@ import { CircularList } from './utils/CircularList';
import { SelectionManager } from './SelectionManager';
import { SelectionModel } from './SelectionModel';
import { BufferSet } from './BufferSet';
import { MockTerminal } from './utils/TestUtils';
import { MockTerminal } from './utils/TestUtils.test';
import { LineData } from './Types';
class TestSelectionManager extends SelectionManager {
+1 -1
View File
@@ -6,7 +6,7 @@ import { assert } from 'chai';
import { ITerminal } from './Interfaces';
import { SelectionModel } from './SelectionModel';
import {BufferSet} from './BufferSet';
import { MockTerminal } from './utils/TestUtils';
import { MockTerminal } from './utils/TestUtils.test';
class TestSelectionModel extends SelectionModel {
constructor(
+1 -1
View File
@@ -1,6 +1,6 @@
import { assert, expect } from 'chai';
import { Terminal } from './Terminal';
import { MockViewport, MockCompositionHelper } from './utils/TestUtils';
import { MockViewport, MockCompositionHelper } from './utils/TestUtils.test';
import { CHAR_DATA_CHAR_INDEX, CHAR_DATA_WIDTH_INDEX } from './Buffer';
class TestTerminal extends Terminal {