mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2025-12-09 13:06:45 +03:00
9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
// example.test.ts
|
|
import { describe, test, expect } from "bun:test";
|
|
|
|
describe("Example Test", () => {
|
|
test("should pass", () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|