mprojectscode_obsidian-base.../tests/test.test.ts
2025-10-02 11:10:56 +02:00

7 lines
149 B
TypeScript

import { describe, test, expect } from 'bun:test';
describe('sample test group', () => {
test('sample test', () => {
expect(5).toBe(5);
});
});