@@ -66,7 +66,8 @@ describe('Server', () => {
66
66
it ( 'GET request to bundle file' , ( done ) => {
67
67
request ( app ) . get ( '/public/bundle.js' )
68
68
. expect ( 'Content-Type' , 'application/javascript; charset=UTF-8' )
69
- . expect ( 'Content-Length' , '3645' )
69
+ // TODO(michael-ciniawsky) investigate the need for this test
70
+ . expect ( 'Content-Length' , '4631' )
70
71
. expect ( 200 , / c o n s o l e \. l o g \( ' H e y \. ' \) / , done ) ;
71
72
} ) ;
72
73
@@ -140,7 +141,8 @@ describe('Server', () => {
140
141
it ( 'POST request to bundle file with methods set to [\'POST\']' , ( done ) => {
141
142
request ( app ) . post ( '/public/bundle.js' )
142
143
. expect ( 'Content-Type' , 'application/javascript; charset=UTF-8' )
143
- . expect ( 'Content-Length' , '3645' )
144
+ // TODO(michael-ciniawsky) investigate the need for this test
145
+ . expect ( 'Content-Length' , '4631' )
144
146
. expect ( 200 , / c o n s o l e \. l o g \( ' H e y \. ' \) / , done ) ;
145
147
} ) ;
146
148
@@ -189,7 +191,8 @@ describe('Server', () => {
189
191
190
192
it ( 'GET request to bundle file' , ( done ) => {
191
193
request ( app ) . get ( '/bundle.js' )
192
- . expect ( 'Content-Length' , '3645' )
194
+ // TODO(michael-ciniawsky) investigate the need for this test
195
+ . expect ( 'Content-Length' , '4631' )
193
196
. expect ( 200 , / c o n s o l e \. l o g \( ' H e y \. ' \) / , done ) ;
194
197
} ) ;
195
198
} ) ;
0 commit comments