Skip to content

Commit 203e307

Browse files
remove logs
1 parent 97e3e59 commit 203e307

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

editor/src/test/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import * as fs from 'fs';
1111
function loadArgs(inRoot) {
1212
const data = fs.readFileSync(path.join(inRoot, '../../.args.json'), 'utf8');
1313

14-
console.log("data", data);
1514
try {
1615
const args = JSON.parse(data);
1716
for (const key in args) {
@@ -45,7 +44,6 @@ export async function run(): Promise<void> {
4544
continue;
4645
const versionFile = tests[f] ? tests[f] : currentVersion;
4746
if (compareVersion(currentVersion, versionFile) >= 0) {
48-
console.log(f);
4947
mocha.addFile(path.resolve(testsRoot, f));
5048
}
5149
}

editor/src/test/runTest.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ async function main() {
1515
// The path to test runner
1616
// Passed to --extensionTestsPath
1717
const extensionTestsPath = path.resolve(__dirname, './index');
18-
console.log(extensionTestsPath)
1918
// Download VS Code, unzip it and run the integration test
2019
await runTests({ extensionDevelopmentPath, extensionTestsPath });
2120
} catch (err) {

0 commit comments

Comments
 (0)