graphql-tester
graphql-tester copied to clipboard
Test Framework for executing integration tests against GraphQL Services
We need to test our API end point which uses Authentication in header, whereas the tester function will take url, server, method and contenttype. Can we have Authentication in tester...
our graphql requires a couple of custom headers for authentication. Would be nice to be able to pass in custom headers through _ref.
The currently latest available Release via npm and GitHub is [v0.0.5](https://github.com/sazzer/graphql-tester/releases/tag/v0.0.5). Since then ~3 commits have been made to master: https://github.com/sazzer/graphql-tester/compare/v0.0.5...master One of them being the merge of PR #10,...
The example URL mentioned in README is not working - http://graphql-swapi.parseapp.com/
I have a GraphQL endpoint that requires authentication. I protect with some very simple (passport-based) middleware: const redirectIfNotAuthenticated = (request, response, next) => request.isAuthenticated() && request.session.user ? next() : response.redirect('/login');...
My application is working in production and works perfectly with graphiql, but i'm getting this response when i use this package: { raw: '{"errors":[{"message":"Must provide query string."}]}', data: undefined, errors:...
Referencing this SO issue: http://stackoverflow.com/questions/41712608/graphql-tester-unit-tests-with-graphql-apollo-server/41842176#41842176. Potentially something to add to the README?
Hi, NPM package is missing this change: https://github.com/sazzer/graphql-tester/commit/10716ff892feec030ccf5c6f207fbf5c876801d5 Any idea when the changed will be pushed up? Thanks!
Hi We are using your awesome package and we needed to use cookie authorization in our project so we added it. Could you please accept it to the main branch...