summaryrefslogtreecommitdiff
path: root/packages/integrations/node/test/server-host.test.js
blob: facd32d471087387ff4c969c11b177f2cac7410b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import * as assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import { hostOptions } from '../dist/standalone.js';

describe('host', () => {
	it('returns "0.0.0.0" when host is true', () => {
		const options = { host: true };
		assert.equal(hostOptions(options.host), '0.0.0.0');
	});

	it('returns "localhost" when host is false', () => {
		const options = { host: false };
		assert.equal(hostOptions(options.host), 'localhost');
	});

	it('returns the value of host when host is a string', () => {
		const host = '1.1.1.1';
		const options = { host };
		assert.equal(hostOptions(options.host), host);
	});
});