Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Segaran committed May 18, 2020
1 parent d9f0d8e commit 977a89e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
10 changes: 5 additions & 5 deletions packages/apollo-engine-reporting/src/__tests__/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('schema reporting', () => {
{
startSchemaReporting,
executableSchemaIdGenerator,
}
},
);

await pluginTestHarness({
Expand Down Expand Up @@ -104,7 +104,7 @@ describe('schema reporting', () => {
{
startSchemaReporting,
executableSchemaIdGenerator,
}
},
);

await pluginTestHarness({
Expand Down Expand Up @@ -152,7 +152,7 @@ describe('schema reporting', () => {
{
startSchemaReporting,
executableSchemaIdGenerator,
}
},
);

await pluginTestHarness({
Expand Down Expand Up @@ -208,7 +208,7 @@ it('trace construction', async () => {
{
startSchemaReporting,
executableSchemaIdGenerator,
}
},
);

await pluginTestHarness({
Expand All @@ -222,7 +222,7 @@ it('trace construction', async () => {
},
http: new Request('http://localhost:123/foo'),
},
executor: async ({ request: { query: source }}) => {
executor: async ({ request: { query: source } }) => {
return await graphql({
schema,
source,
Expand Down
5 changes: 2 additions & 3 deletions packages/apollo-engine-reporting/src/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {
GraphQLSchema,
lexicographicSortSchema,
printSchema,
stripIgnoredCharacters
} from "graphql";
stripIgnoredCharacters,
} from 'graphql';
import {
ReportHeader,
Trace,
Expand All @@ -27,7 +27,6 @@ import { reportingLoop, SchemaReporter } from './schemaReporter';
import { v4 as uuidv4 } from 'uuid';
import { isString } from 'util';


let warnedOnDeprecatedApiKey = false;

export interface ClientInfo {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// GraphQL mutation operation: AutoregReportServerInfo
// ====================================================

import { GraphQLFormattedError } from "graphql";
import { GraphQLFormattedError } from 'graphql';

export interface ReportServerInfo_me_UserMutation {
__typename: 'UserMutation';
Expand Down Expand Up @@ -36,7 +36,7 @@ export interface AutoregReportServerInfo {
}

export interface AutoregReportServerInfoResult {
data?: AutoregReportServerInfo,
data?: AutoregReportServerInfo;
errors?: ReadonlyArray<GraphQLFormattedError>;
}

Expand Down

0 comments on commit 977a89e

Please sign in to comment.