Skip to content

Commit 867a9fc

Browse files
committed
prettier fix
1 parent 6458189 commit 867a9fc

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
path: junit.xml
4646
Incremental Delivery:
4747
docker:
48-
- image: cimg/base:stable
48+
- image: cimg/base:stable
4949
environment:
5050
INCREMENTAL_DELIVERY_TESTS_ENABLED: t
5151
steps:

src/handler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { Readable } from "node:stream";
2+
13
import { ApolloServer, BaseContext } from "@apollo/server";
24
import type { WithRequired } from "@apollo/utils.withrequired";
35
import type {
@@ -14,8 +16,6 @@ import type {
1416
RouteHandlerMethod,
1517
} from "fastify";
1618

17-
import { Readable } from "node:stream";
18-
1919
import { fastifyRequestToGraphQLRequest } from "./fastify-request-to-graphql-request.js";
2020
import { ApolloFastifyContextFunction, ApolloFastifyHandlerOptions } from "./types.js";
2121
import { isApolloServerLike } from "./utils.js";

tests/handler.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { ApolloServer, ApolloServerOptions, BaseContext } from "@apollo/server";
2-
import { CreateServerForIntegrationTestsOptions, defineIntegrationTestSuite } from "@apollo/server-integration-testsuite";
2+
import {
3+
CreateServerForIntegrationTestsOptions,
4+
defineIntegrationTestSuite,
5+
} from "@apollo/server-integration-testsuite";
36
import { fastify as Fastify } from "fastify";
47

58
import { ApolloFastifyContextFunction, fastifyApolloDrainPlugin, fastifyApolloHandler } from "../src/index.js";

tests/plugin.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { ApolloServer, ApolloServerOptions, BaseContext } from "@apollo/server";
2-
import { CreateServerForIntegrationTestsOptions, defineIntegrationTestSuite } from "@apollo/server-integration-testsuite";
2+
import {
3+
CreateServerForIntegrationTestsOptions,
4+
defineIntegrationTestSuite,
5+
} from "@apollo/server-integration-testsuite";
36
import { fastify as Fastify } from "fastify";
47

58
import fastifyApollo, { fastifyApolloDrainPlugin } from "../src/index.js";

0 commit comments

Comments
 (0)