Skip to content

Commit 26875e0

Browse files
test: fix
1 parent f1244ca commit 26875e0

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

bin/cli-flags.js

+13-4
Original file line numberDiff line numberDiff line change
@@ -297,21 +297,30 @@ module.exports = {
297297
"web-socket-server": {
298298
configs: [
299299
{
300-
type: "enum",
301-
values: [false, "sockjs", "ws"],
302-
multiple: false,
303300
description:
304301
"Allows to set web socket server and options (by default 'ws').",
302+
multiple: false,
305303
path: "webSocketServer",
304+
type: "enum",
305+
values: [false],
306306
},
307307
{
308-
type: "string",
308+
description:
309+
"Allows to set web socket server and options (by default 'ws').",
309310
multiple: false,
311+
path: "webSocketServer",
312+
type: "enum",
313+
values: ["sockjs", "ws"],
314+
},
315+
{
310316
description:
311317
"Allows to set web socket server and options (by default 'ws').",
318+
multiple: false,
312319
path: "webSocketServer",
320+
type: "string",
313321
},
314322
],
323+
315324
description:
316325
"Allows to set web socket server and options (by default 'ws').",
317326
simpleType: "string",

0 commit comments

Comments
 (0)