apollo-server-testing
TypeScript icon, indicating that this package has built-in type declarations

2.25.3 • Public • Published

apollo-server-testing

This deprecated package contains a function createTestClient which is a very thin wrapper around the Apollo Server server.executeOperation method.

Code that uses this package looks like the following, where server is an ApolloServer:

const { createTestClient } = require('apollo-server-testing');

const { query, mutate } = createTestClient(server);

await query({ query: QUERY });
await mutate({ mutation: MUTATION });

We recommend you stop using this package and replace the above code with the equivalent:

await server.executeOperation({ query: QUERY });
await server.executeOperation({ query: MUTATION });

This package will not be distributed as part of Apollo Server 3.

Package Sidebar

Install

npm i apollo-server-testing

Weekly Downloads

58,962

Version

2.25.3

License

MIT

Unpacked Size

294 kB

Total Files

19

Last publish

Collaborators

  • apollo-bot