File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/data-connect/test/unit Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ function mockFetch(json: object, reject: boolean): sinon.SinonStub {
3434 initializeFetch ( fakeFetchImpl ) ;
3535 return fakeFetchImpl ;
3636}
37- describe . only ( 'fetch' , ( ) => {
37+ describe ( 'fetch' , ( ) => {
3838 it ( 'should throw an error with just the message when the server responds with an error with a message property in the body' , async ( ) => {
3939 const message = 'Failed to connect to Postgres instance' ;
4040 mockFetch (
@@ -85,7 +85,7 @@ describe.only('fetch', () => {
8585 )
8686 ) . to . eventually . be . rejectedWith ( JSON . stringify ( json ) ) ;
8787 } ) ;
88- it . only ( 'should throw a stringified message when the server responds with an error without a message property in the body' , async ( ) => {
88+ it ( 'should throw a stringified message when the server responds with an error without a message property in the body' , async ( ) => {
8989 const json = {
9090 'data' : { 'abc' : 'def' } ,
9191 'errors' : [
You can’t perform that action at this time.
0 commit comments