Remove lint and typecheck tests

This commit is contained in:
Konstantin Wohlwend 2026-04-09 13:28:45 -07:00
parent d5d312b467
commit b39b4b6b8b
2 changed files with 0 additions and 28 deletions

View File

@ -1,14 +0,0 @@
import { exec } from "child_process";
import { describe } from "vitest";
import { it } from "../helpers";
describe("`pnpm run lint`", () => {
it("completes successfully", async ({ expect }) => {
const [error, stdout, stderr] = await new Promise<[Error | null, string, string]>((resolve) => {
exec("pnpm run lint", (error, stdout, stderr) => {
resolve([error, stdout, stderr]);
});
});
expect(error, `Expected no error to be thrown!\n\n\n\nstdout: ${stdout}\n\n\n\nstderr: ${stderr}`).toBeNull();
}, 240_000);
});

View File

@ -1,14 +0,0 @@
import { exec } from "child_process";
import { describe } from "vitest";
import { it } from "../helpers";
describe("`pnpm run typecheck`", () => {
it("completes successfully", async ({ expect }) => {
const [error, stdout, stderr] = await new Promise<[Error | null, string, string]>((resolve) => {
exec("pnpm run typecheck", (error, stdout, stderr) => {
resolve([error, stdout, stderr]);
});
});
expect(error, `Expected no error to be thrown!\n\n\n\nstdout: ${stdout}\n\n\n\nstderr: ${stderr}`).toBeNull();
}, { retry: 1, timeout: 240_000 });
});