forked from webpack/webpack-dev-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGetSocketServerImplementation.test.js
50 lines (39 loc) · 1.23 KB
/
GetSocketServerImplementation.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
'use strict';
const getSocketServerImplementation = require('../lib/utils/getSocketServerImplementation');
const SockJSServer = require('../lib/servers/SockJSServer');
describe('getSocketServerImplementation', () => {
it("should work with serverMode: 'sockjs'", () => {
let result;
expect(() => {
result = getSocketServerImplementation({
serverMode: 'sockjs',
});
}).not.toThrow();
expect(result).toEqual(SockJSServer);
});
it('should work with serverMode: SockJSServer class', () => {
let result;
expect(() => {
result = getSocketServerImplementation({
serverMode: SockJSServer,
});
}).not.toThrow();
expect(result).toEqual(SockJSServer);
});
it('should work with serverMode: SockJSServer full path', () => {
let result;
expect(() => {
result = getSocketServerImplementation({
serverMode: require.resolve('../lib/servers/SockJSServer'),
});
}).not.toThrow();
expect(result).toEqual(SockJSServer);
});
it('should throw with serverMode: bad path', () => {
expect(() => {
getSocketServerImplementation({
serverMode: '/bad/path/to/implementation',
});
}).toThrow(/serverMode must be a string/);
});
});