feat(swarm): implement swarm workspace container component
This commit is contained in:
parent
f35ae8df33
commit
f03cd13d87
2 changed files with 57 additions and 0 deletions
10
tests/components/swarm/swarm-workspace.test.tsx
Normal file
10
tests/components/swarm/swarm-workspace.test.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { expect, test, describe } from 'bun:test';
|
||||
|
||||
describe('SwarmWorkspace Component', () => {
|
||||
test('exports SwarmWorkspace component that is a function', async () => {
|
||||
// This will fail because the file doesn't exist yet
|
||||
const mod = await import('../../../src/components/swarm/swarm-workspace');
|
||||
expect(mod.SwarmWorkspace).toBeDefined();
|
||||
expect(typeof mod.SwarmWorkspace).toBe('function');
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue