import { DyNTS_defaultSocketPath } from './default-socket-path.const'; describe('| DyNTS_defaultSocketPath', () => { it('| should export default socket path as \'/socket\'', () => { expect(DyNTS_defaultSocketPath).toBe('/socket'); }); it('| should be a non-empty string', () => { expect(typeof DyNTS_defaultSocketPath).toBe('string'); expect(DyNTS_defaultSocketPath.length).toBeGreaterThan(0); }); });