Browse Source

chore(testing): Remove console log statement

Michael Bromley 5 years ago
parent
commit
75f1ff532f
1 changed files with 0 additions and 1 deletions
  1. 0 1
      packages/testing/src/simple-graphql-client.ts

+ 0 - 1
packages/testing/src/simple-graphql-client.ts

@@ -236,7 +236,6 @@ export class SimpleGraphQLClient {
         const response = await result.json();
         if (response.errors && response.errors.length) {
             const error = response.errors[0];
-            console.log(JSON.stringify(error.extensions, null, 2));
             throw new Error(error.message);
         }
         return response.data;