* test: add web helpers tests * fix: coverage report * test: add more tests * test: add more generated tests * chore: add more tests * test: add more tests
9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
|
|
import { assistantsAtom } from './Assistant.atom';
|
|
|
|
test('assistantsAtom initializes as an empty array', () => {
|
|
const initialValue = assistantsAtom.init;
|
|
expect(Array.isArray(initialValue)).toBe(true);
|
|
expect(initialValue).toHaveLength(0);
|
|
});
|