* 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
171 B
TypeScript
8 lines
171 B
TypeScript
|
|
import { hostAtom } from './AppConfig.atom';
|
|
|
|
test('hostAtom default value', () => {
|
|
const result = hostAtom.init;
|
|
expect(result).toBe('http://localhost:1337/');
|
|
});
|