10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
|
|
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);
|
||
|
|
});
|
||
|
|
});
|