@@ -276,7 +276,7 @@ describe("server option", () => {
276
276
} ) ;
277
277
278
278
describe ( "as object" , ( ) => {
279
- describe . skip ( "ca, pfx, key and cert are buffer" , ( ) => {
279
+ describe ( "ca, pfx, key and cert are buffer" , ( ) => {
280
280
let compiler ;
281
281
let server ;
282
282
let createServerSpy ;
@@ -359,7 +359,7 @@ describe("server option", () => {
359
359
} ) ;
360
360
} ) ;
361
361
362
- describe . skip ( "ca, pfx, key and cert are array of buffers" , ( ) => {
362
+ describe ( "ca, pfx, key and cert are array of buffers" , ( ) => {
363
363
let compiler ;
364
364
let server ;
365
365
let createServerSpy ;
@@ -450,7 +450,7 @@ describe("server option", () => {
450
450
} ) ;
451
451
} ) ;
452
452
453
- describe . skip ( "ca, pfx, key and cert are strings" , ( ) => {
453
+ describe ( "ca, pfx, key and cert are strings" , ( ) => {
454
454
let compiler ;
455
455
let server ;
456
456
let createServerSpy ;
@@ -539,7 +539,7 @@ describe("server option", () => {
539
539
} ) ;
540
540
} ) ;
541
541
542
- describe . skip ( "ca, pfx, key and cert are array of strings" , ( ) => {
542
+ describe ( "ca, pfx, key and cert are array of strings" , ( ) => {
543
543
let compiler ;
544
544
let server ;
545
545
let createServerSpy ;
@@ -637,7 +637,7 @@ describe("server option", () => {
637
637
} ) ;
638
638
} ) ;
639
639
640
- describe . skip ( "ca, pfx, key and cert are paths to files" , ( ) => {
640
+ describe ( "ca, pfx, key and cert are paths to files" , ( ) => {
641
641
let compiler ;
642
642
let server ;
643
643
let createServerSpy ;
@@ -712,7 +712,7 @@ describe("server option", () => {
712
712
} ) ;
713
713
} ) ;
714
714
715
- describe . skip ( "ca, pfx, key and cert are array of paths to files" , ( ) => {
715
+ describe ( "ca, pfx, key and cert are array of paths to files" , ( ) => {
716
716
let compiler ;
717
717
let server ;
718
718
let createServerSpy ;
@@ -787,7 +787,7 @@ describe("server option", () => {
787
787
} ) ;
788
788
} ) ;
789
789
790
- describe . skip ( "ca, pfx, key and cert are symlinks" , ( ) => {
790
+ describe ( "ca, pfx, key and cert are symlinks" , ( ) => {
791
791
if ( skipTestOnWindows ( "Symlinks are not supported on Windows" ) ) {
792
792
return ;
793
793
}
@@ -864,7 +864,7 @@ describe("server option", () => {
864
864
} ) ;
865
865
} ) ;
866
866
867
- describe . skip ( "cacert, pfx, key and cert are buffer" , ( ) => {
867
+ describe ( "cacert, pfx, key and cert are buffer" , ( ) => {
868
868
let compiler ;
869
869
let server ;
870
870
let createServerSpy ;
@@ -953,7 +953,7 @@ describe("server option", () => {
953
953
} ) ;
954
954
} ) ;
955
955
956
- describe . skip ( "cacert and ca, pfx, key and cert are buffer" , ( ) => {
956
+ describe ( "cacert and ca, pfx, key and cert are buffer" , ( ) => {
957
957
let compiler ;
958
958
let server ;
959
959
let createServerSpy ;
@@ -1039,7 +1039,7 @@ describe("server option", () => {
1039
1039
} ) ;
1040
1040
} ) ;
1041
1041
1042
- describe . skip ( "ca, pfx, key and cert are buffer, key and pfx are objects" , ( ) => {
1042
+ describe ( "ca, pfx, key and cert are buffer, key and pfx are objects" , ( ) => {
1043
1043
let compiler ;
1044
1044
let server ;
1045
1045
let createServerSpy ;
@@ -1130,7 +1130,7 @@ describe("server option", () => {
1130
1130
} ) ;
1131
1131
} ) ;
1132
1132
1133
- describe . skip ( "ca, pfx, key and cert are strings, key and pfx are objects" , ( ) => {
1133
+ describe ( "ca, pfx, key and cert are strings, key and pfx are objects" , ( ) => {
1134
1134
let compiler ;
1135
1135
let server ;
1136
1136
let createServerSpy ;
@@ -1226,7 +1226,7 @@ describe("server option", () => {
1226
1226
} ) ;
1227
1227
} ) ;
1228
1228
1229
- describe . skip ( "allow to pass more options" , ( ) => {
1229
+ describe ( "allow to pass more options" , ( ) => {
1230
1230
let compiler ;
1231
1231
let server ;
1232
1232
let createServerSpy ;
@@ -1311,7 +1311,7 @@ describe("server option", () => {
1311
1311
} ) ;
1312
1312
1313
1313
// puppeteer having issues accepting SSL here, throwing error net::ERR_BAD_SSL_CLIENT_AUTH_CERT, hence testing with supertest
1314
- describe . skip ( 'should support the "requestCert" option' , ( ) => {
1314
+ describe ( 'should support the "requestCert" option' , ( ) => {
1315
1315
let compiler ;
1316
1316
let server ;
1317
1317
let createServerSpy ;
@@ -1374,7 +1374,7 @@ describe("server option", () => {
1374
1374
} ) ;
1375
1375
} ) ;
1376
1376
1377
- describe . skip ( "options should be prioritized over https options" , ( ) => {
1377
+ describe ( "options should be prioritized over https options" , ( ) => {
1378
1378
let compiler ;
1379
1379
let server ;
1380
1380
let createServerSpy ;
@@ -1472,7 +1472,7 @@ describe("server option", () => {
1472
1472
} ) ;
1473
1473
} ) ;
1474
1474
1475
- describe . skip ( "options should be prioritized over http2 options" , ( ) => {
1475
+ describe ( "options should be prioritized over http2 options" , ( ) => {
1476
1476
let compiler ;
1477
1477
let server ;
1478
1478
let createServerSpy ;
@@ -1571,7 +1571,7 @@ describe("server option", () => {
1571
1571
} ) ;
1572
1572
} ) ;
1573
1573
1574
- describe . skip ( "spdy server with options" , ( ) => {
1574
+ describe ( "spdy server with options" , ( ) => {
1575
1575
let compiler ;
1576
1576
let server ;
1577
1577
let createServerSpy ;
0 commit comments