Skip to content

Commit e90e4bd

Browse files
committed
aaaaa
1 parent bb1f5ae commit e90e4bd

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/tests/integration/extension.test.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ describe("Extension Tests", function () {
4747
fs.writeFileSync(filePath, file.content);
4848
}
4949

50-
execSync(`git add .`, { cwd: folder });
51-
execSync(`git commit -m lgtm`, { cwd: folder });
52-
50+
console.log(folder);
5351
return folder;
5452
};
5553

@@ -68,9 +66,6 @@ describe("Extension Tests", function () {
6866

6967
test("should not give diagnostics when no file path issues", async function () {
7068
const folder = createFiles([{ name: "README.md", content: "blah blah blah\n\nnothing to see here\n" }]);
71-
console.log("aaaaaa " + folder);
72-
73-
console.log("bbbbb " + vscode.languages.getDiagnostics(vscode.Uri.file(path.join(folder, "README.md"))));
7469

7570
await waitForDiagnostic(`${folder}/README.md`, (diagnostics) => {
7671
assert.strictEqual(diagnostics.length, 0, "Expected no diagnostics for safe file");

0 commit comments

Comments
 (0)