Skip to content

Commit bb1f5ae

Browse files
committed
test in prod yessir
1 parent 6fe26e3 commit bb1f5ae

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/tests/integration/extension.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const redkitten6sSupabaseKey =
3434
const redkitten6sYouTubeKey = "AIzaSyAVQKyYxMrhgHWR8f9LJms0GVpcufhMLwc";
3535

3636
describe("Extension Tests", function () {
37-
this.timeout(10000);
37+
this.timeout(1000);
3838

3939
const workspace = vscode.workspace.workspaceFolders?.[0]?.uri.fsPath;
4040
assert.ok(workspace, "No workspace found");
@@ -68,6 +68,9 @@ describe("Extension Tests", function () {
6868

6969
test("should not give diagnostics when no file path issues", async function () {
7070
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"))));
7174

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

0 commit comments

Comments
 (0)