Skip to content

Commit a93b180

Browse files
Merge pull request #170 from TCourtneyOwen/merge-office-addin-taskpane
Merge-office-addin-taskpane/master
2 parents 686ad88 + a42ae73 commit a93b180

File tree

5 files changed

+1196
-767
lines changed

5 files changed

+1196
-767
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @OfficeDev/office-platform-devx

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
1212
"args": [
1313
"-u",
14-
"tdd",
14+
"bdd",
1515
"--timeout",
1616
"999999",
1717
"--colors",

convertToSingleHost.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ const unlinkFileAsync = util.promisify(fs.unlink);
88
const writeFileAsync = util.promisify(fs.writeFile);
99

1010
async function removeTestInfraStructure() {
11-
deleteFolder(path.resolve(`${process.cwd()}/test`));
12-
deleteFolder(path.resolve(`${process.cwd()}/.github`));
11+
deleteFolder(path.resolve(`./test`));
12+
13+
// delete the .github folder
14+
deleteFolder(path.resolve(`./.github`));
15+
1316
await updatePackageJsonFile();
1417
await updateLaunchJsonFile();
1518
// delete this script

0 commit comments

Comments
 (0)