File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,19 +86,19 @@ const insertAndReadBackFromStream = async (siteId) => {
8686} ;
8787
8888// This test is for Challenge #6.
89- test . skip ( `${ testSuiteName } : insert and read back from global stream` , async ( ) => {
89+ test ( `${ testSuiteName } : insert and read back from global stream` , async ( ) => {
9090 await insertAndReadBackFromStream ( ) ;
9191} ) ;
9292
9393// This test is for Challenge #6.
94- test . skip ( `${ testSuiteName } : read stream for site that does not exist` , async ( ) => {
94+ test ( `${ testSuiteName } : read stream for site that does not exist` , async ( ) => {
9595 const meterReadings = await redisFeedDAO . getRecentForSite ( - 1 , 100 ) ;
9696
9797 expect ( meterReadings . length ) . toBe ( 0 ) ;
9898} ) ;
9999
100100// This test is for Challenge #6.
101- test . skip ( `${ testSuiteName } : insert and read back from site specific stream` , async ( ) => {
101+ test ( `${ testSuiteName } : insert and read back from site specific stream` , async ( ) => {
102102 await insertAndReadBackFromStream ( 998 ) ;
103103} ) ;
104104
You can’t perform that action at this time.
0 commit comments