mirror of
https://github.com/mprojectscode/obsidian-bases-charts-plugin.git
synced 2026-07-22 06:43:19 +00:00
7 lines
149 B
TypeScript
7 lines
149 B
TypeScript
import { describe, test, expect } from 'bun:test';
|
|
|
|
describe('sample test group', () => {
|
|
test('sample test', () => {
|
|
expect(5).toBe(5);
|
|
});
|
|
});
|