mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
Remove lint and typecheck tests
This commit is contained in:
parent
d5d312b467
commit
b39b4b6b8b
@ -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);
|
||||
});
|
||||
@ -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 });
|
||||
});
|
||||
Loading…
Reference in New Issue
Block a user