Skip to content

Commit 763dcd3

Browse files
committed
Removed only
1 parent 9f535fb commit 763dcd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/data-connect/test/unit/fetch.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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': [

0 commit comments

Comments
 (0)