-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
9 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
/** | ||
* @author Darren Miller <[email protected]> | ||
*/ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT license. | ||
|
||
import * as path from "path"; | ||
import * as fs from "fs-extra"; | ||
import { expect } from "chai"; | ||
import { Timeout } from "../../utils/constants"; | ||
import { TreeViewTestContext } from "./treeviewContext"; | ||
import { createNewProject } from "../../utils/vscodeOperation"; | ||
import { it } from "../../utils/it"; | ||
import { getNodeVersion } from "../../utils/getNodeVersion"; | ||
|
||
describe("New project Tests", function () { | ||
this.timeout(Timeout.testCase); | ||
let treeViewTestContext: TreeViewTestContext; | ||
let testRootFolder: string; | ||
let nodeVersion: string | null; | ||
const appNameCopySuffix = "copy"; | ||
let newAppFolderName: string; | ||
let projectPath: string; | ||
|
@@ -24,7 +22,6 @@ describe("New project Tests", function () { | |
this.timeout(Timeout.prepareTestCase); | ||
treeViewTestContext = new TreeViewTestContext("treeview"); | ||
testRootFolder = treeViewTestContext.testRootFolder; | ||
nodeVersion = await getNodeVersion(); | ||
await treeViewTestContext.before(); | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
/** | ||
* @author Helly Zhang <[email protected]> | ||
*/ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT license. | ||
|
||
import * as path from "path"; | ||
import * as fs from "fs-extra"; | ||
import { expect } from "chai"; | ||
import { Timeout } from "../../utils/constants"; | ||
import { TreeViewTestContext } from "./treeviewContext"; | ||
import { createNewProject } from "../../utils/vscodeOperation"; | ||
import { it } from "../../utils/it"; | ||
import { getNodeVersion } from "../../utils/getNodeVersion"; | ||
|
||
describe("New project Tests", function () { | ||
this.timeout(Timeout.testCase); | ||
let treeViewTestContext: TreeViewTestContext; | ||
let testRootFolder: string; | ||
let nodeVersion: string | null; | ||
const appNameCopySuffix = "copy"; | ||
let newAppFolderName: string; | ||
let projectPath: string; | ||
|
@@ -24,7 +22,6 @@ describe("New project Tests", function () { | |
this.timeout(Timeout.prepareTestCase); | ||
treeViewTestContext = new TreeViewTestContext("treeview"); | ||
testRootFolder = treeViewTestContext.testRootFolder; | ||
nodeVersion = await getNodeVersion(); | ||
await treeViewTestContext.before(); | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
/** | ||
* @author Helly Zhang <[email protected]> | ||
*/ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT license. | ||
|
||
import * as path from "path"; | ||
import * as fs from "fs-extra"; | ||
import { expect } from "chai"; | ||
import { Timeout } from "../../utils/constants"; | ||
import { TreeViewTestContext } from "./treeviewContext"; | ||
import { createNewProject } from "../../utils/vscodeOperation"; | ||
import { it } from "../../utils/it"; | ||
import { getNodeVersion } from "../../utils/getNodeVersion"; | ||
|
||
describe("New project Tests", function () { | ||
this.timeout(Timeout.testCase); | ||
let treeViewTestContext: TreeViewTestContext; | ||
let testRootFolder: string; | ||
let nodeVersion: string | null; | ||
const appNameCopySuffix = "copy"; | ||
let newAppFolderName: string; | ||
let projectPath: string; | ||
|
@@ -24,7 +22,6 @@ describe("New project Tests", function () { | |
this.timeout(Timeout.prepareTestCase); | ||
treeViewTestContext = new TreeViewTestContext("treeview"); | ||
testRootFolder = treeViewTestContext.testRootFolder; | ||
nodeVersion = await getNodeVersion(); | ||
await treeViewTestContext.before(); | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.