File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
workbench/contrib/mergeEditor/test/browser Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
- import assert = require ( 'assert' ) ;
6
+ import * as assert from 'assert' ;
7
7
import { Range } from 'vs/editor/common/core/range' ;
8
8
import { LineRangeMapping , RangeMapping } from 'vs/editor/common/diff/linesDiffComputer' ;
9
9
import { lineRangeMappingFromRangeMappings , StandardLinesDiffComputer } from 'vs/editor/common/diff/standardLinesDiffComputer' ;
Original file line number Diff line number Diff line change 6
6
import * as os from 'os' ;
7
7
import * as cp from 'child_process' ;
8
8
import { promises as fs } from 'fs' ;
9
- import path = require ( 'path' ) ;
9
+ import * as path from 'path' ;
10
10
11
11
let hasWSLFeaturePromise : Promise < boolean > | undefined ;
12
12
Original file line number Diff line number Diff line change 3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
- import assert = require ( 'assert' ) ;
6
+ import * as assert from 'assert' ;
7
7
import { ensureNoDisposablesAreLeakedInTestSuite } from 'vs/base/test/common/utils' ;
8
8
import { Position } from 'vs/editor/common/core/position' ;
9
9
import { Range } from 'vs/editor/common/core/range' ;
Original file line number Diff line number Diff line change 3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
- import assert = require ( 'assert' ) ;
6
+ import * as assert from 'assert' ;
7
7
import { Disposable , DisposableStore } from 'vs/base/common/lifecycle' ;
8
8
import { transaction } from 'vs/base/common/observable' ;
9
9
import { ensureNoDisposablesAreLeakedInTestSuite } from 'vs/base/test/common/utils' ;
Original file line number Diff line number Diff line change 3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
- import assert = require ( 'assert' ) ;
6
+ import * as assert from 'assert' ;
7
7
import { ensureNoDisposablesAreLeakedInTestSuite } from 'vs/base/test/common/utils' ;
8
8
import { Position } from 'vs/editor/common/core/position' ;
9
9
import { createTextModel } from 'vs/editor/test/common/testTextModel' ;
You can’t perform that action at this time.
0 commit comments