* 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
251 B
TypeScript
9 lines
251 B
TypeScript
|
|
import { mainViewStateAtom } from './App.atom';
|
|
import { MainViewState } from '@/constants/screens';
|
|
|
|
test('mainViewStateAtom initializes with Thread', () => {
|
|
const result = mainViewStateAtom.init;
|
|
expect(result).toBe(MainViewState.Thread);
|
|
});
|