File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,17 @@ describe('CLI', () => {
57
57
. catch ( done ) ;
58
58
} ) ;
59
59
60
+ it ( '--no-https' , ( done ) => {
61
+ testBin ( '--no-https' )
62
+ . then ( ( output ) => {
63
+ expect ( output . exitCode ) . toEqual ( 0 ) ;
64
+ expect ( / h t t p s : \/ \/ / . test ( output . stderr ) ) . toEqual ( false ) ;
65
+ expect ( / h t t p : \/ \/ l o c a l h o s t : [ 0 - 9 ] + / . test ( output . stderr ) ) . toEqual ( true ) ;
66
+ done ( ) ;
67
+ } )
68
+ . catch ( done ) ;
69
+ } ) ;
70
+
60
71
it ( '--history-api-fallback' , ( done ) => {
61
72
testBin ( '--history-api-fallback --no-color' )
62
73
. then ( ( output ) => {
@@ -67,6 +78,18 @@ describe('CLI', () => {
67
78
. catch ( done ) ;
68
79
} ) ;
69
80
81
+ it ( '--no-history-api-fallback' , ( done ) => {
82
+ testBin ( '--no-history-api-fallback' )
83
+ . then ( ( output ) => {
84
+ expect ( output . exitCode ) . toEqual ( 0 ) ;
85
+ expect ( output . stderr ) . not . toContain (
86
+ `404s will fallback to '/index.html'`
87
+ ) ;
88
+ done ( ) ;
89
+ } )
90
+ . catch ( done ) ;
91
+ } ) ;
92
+
70
93
it ( 'unspecified host and port' , ( done ) => {
71
94
testBin ( '' )
72
95
. then ( ( output ) => {
You can’t perform that action at this time.
0 commit comments