mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-07-19 09:15:57 +00:00
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
import assert from "assert";
|
|
import { describe, test } from "vitest";
|
|
|
|
describe("describe text", () => {
|
|
test("pass", async () => {
|
|
assert(false);
|
|
});
|
|
|
|
test("fail", async () => {
|
|
assert(false);
|
|
});
|
|
});
|