* 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
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
|
|
import { hostOptions } from './ApiServer.atom';
|
|
|
|
test('hostOptions correct values', () => {
|
|
expect(hostOptions).toEqual([
|
|
{ name: '127.0.0.1', value: '127.0.0.1' },
|
|
{ name: '0.0.0.0', value: '0.0.0.0' },
|
|
]);
|
|
});
|