* 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
8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
|
|
import { selectedSettingAtom } from './Setting.atom';
|
|
|
|
test('selectedSettingAtom has correct initial value', () => {
|
|
const result = selectedSettingAtom.init;
|
|
expect(result).toBe('My Models');
|
|
});
|