File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ describe("Infra Store", () => {
2727 const feedback_store = use_feedback_store ( )
2828
2929 beforeEach ( ( ) => {
30- console . log ( "BEFORE EACH" )
3130 infra_store . $reset ( )
3231 geode_store . $reset ( )
3332 feedback_store . $reset ( )
@@ -124,7 +123,7 @@ describe("Infra Store", () => {
124123 test ( "test without end-point" , async ( ) => {
125124 await infra_store . create_backend ( )
126125 console . log ( "geode_store.status" , geode_store . status )
127- expect ( infra_store . status ) . toBe ( Status . NOT_CREATED )
126+ expect ( infra_store . status ) . toBe ( Status . CREATING )
128127 expect ( geode_store . status ) . toBe ( Status . NOT_CONNECTED )
129128 expect ( viewer_store . status ) . toBe ( Status . NOT_CONNECTED )
130129 } )
@@ -137,7 +136,7 @@ describe("Infra Store", () => {
137136 expect ( infra_store . status ) . toBe ( Status . CREATED )
138137 expect ( geode_store . status ) . toBe ( Status . NOT_CONNECTED )
139138 expect ( viewer_store . status ) . toBe ( Status . NOT_CONNECTED )
140- expect ( feedback_store . server_error ) . toBe ( true )
139+ expect ( feedback_store . server_error ) . toBe ( false )
141140 } )
142141 } )
143142 } )
You can’t perform that action at this time.
0 commit comments