We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9c45d3 commit 453bc61Copy full SHA for 453bc61
test/options.test.js
@@ -16,18 +16,6 @@ describe('test/options.test.js', () => {
16
});
17
18
19
- it('should options.{key|cert} NOT works', () => {
20
- const options = parseOptions({
21
- https: true,
22
- key: utils.getFilepath('server.key'),
23
- cert: utils.getFilepath('server.crt'),
24
- });
25
-
26
- assert(options.port === 8443);
27
- assert(typeof options.https === 'undefined');
28
29
30
31
it('should start with https and listen 8443 with https.{key|cert}', () => {
32
const options = parseOptions({
33
https: {
0 commit comments