apollo-server-integration-testing icon indicating copy to clipboard operation
apollo-server-integration-testing copied to clipboard

Test helper for writing apollo-server integration tests

Results 8 apollo-server-integration-testing issues
Sort by recently updated
recently updated
newest added

With this change, it's possible to use the `apollo-server-integration-testing` with the latest version of `apollo-server-express@^3.0.0` and `graphql@^16.0.0`.

```bash Type 'import("/Users/vladislavbotvin/Projects/bla-bla/node_modules/apollo-server-express/dist/ApolloServer").ApolloServer' is not assignable to type 'import("/Users/vladislavbotvin/Projects/bla-bla/node_modules/apollo-server-integration-testing/node_modules/apollo-server-express/dist/ApolloServer").ApolloServer'. The types returned by 'createGraphQLServerOptions(...)' are incompatible between these types. Type 'Promise' is not assignable to type 'Promise'. Type 'import("/Users/vladislavbotvin/Projects/bla-bla/node_modules/apollo-server-express/node_modules/apollo-server-core/dist/graphqlOptions").GraphQLServerOptions' is...

Updates apollo dependencies for compatibility with version 3. Note: I'm currently running into issues with this fork and `type-graphql`: ``` Cannot use GraphQLSchema "[object GraphQLSchema]" from another module or realm....

I upgraded `apollo-server-express` to 3.0.2 then, I ran test with `apollo-server-integration-testing` and got the error. ``` error TS2740: Type 'ApolloServer' is missing the following properties from type 'ApolloServer': supportsSubscriptions, supportsUploads,...

We are passing a state value by http header and need to test the response headers. Some guidance would be much appreciated! Aliisa

I am searching for a way to test my authorization middleware. I use express middleware to validate my authorization token. ```js //isAuth //simplified module.exports = (req, res, next) => {...

bug
help wanted

Since I was having the same issue as in #6, I made a quick fix locally and linked it. Seems to work just fine, but this is a pretty big...

Hi, Just wanted to know if supporting Apollo Server v4 is in your roadmap. Currently its setup with v2.x and v4 has many breaking changes. We have successfully migrated to...