2026-02-20 17:25:05 -08:00
|
|
|
// @ts-ignore
|
2026-02-20 17:07:49 -08:00
|
|
|
import { expect, test, describe } from 'bun:test';
|
|
|
|
|
import { getArchetypes } from '../../src/lib/server/beads-fs';
|
|
|
|
|
|
|
|
|
|
describe('beads-fs', () => {
|
|
|
|
|
test('getArchetypes returns array of archetypes', async () => {
|
|
|
|
|
const archetypes = await getArchetypes();
|
|
|
|
|
expect(Array.isArray(archetypes)).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
});
|