supertest-graphql
supertest-graphql copied to clipboard
Extends supertest to test a GraphQL endpoint
It seems this project has been abandoned by the author, yes?
Bumps [cookiejar](https://github.com/bmeck/node-cookiejar) from 2.1.3 to 2.1.4. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Bumps [json5](https://github.com/json5/json5) from 2.2.0 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...
Bumps [express](https://github.com/expressjs/express) from 4.17.2 to 4.17.3. Release notes Sourced from express's releases. 4.17.3 deps: accepts@~1.3.8 deps: mime-types@~2.1.34 deps: [email protected] deps: [email protected] deps: [email protected] deps: [email protected] deps: [email protected] deps: [email protected] deps:...
Bumps [qs](https://github.com/ljharb/qs) and [body-parser](https://github.com/expressjs/body-parser). These dependencies needed to be updated together. Updates `qs` from 6.9.6 to 6.11.0 Changelog Sourced from qs's changelog. 6.11.0 [New] [Fix] stringify: revert 0e903c0; add commaRoundTrip...
Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2. Commits 699c459 3.1.2 2f2b5ff fix: trim pattern 25d7c0d 3.1.1 55dda29 fix: treat nocase:true as always having magic 5e1fb8d 3.1.0 f8145c5 Add 'allowWindowsEscape' option 570e8b1...
Bumps [apollo-server-core](https://github.com/apollographql/apollo-server/tree/HEAD/packages/apollo-server-core) from 3.5.0 to 3.11.0. Changelog Sourced from apollo-server-core's changelog. v3.11.0 ⚠️ SECURITY: The cache control plugin no longer sets the cache-control HTTP response header if the operation is...
https://github.com/dotansimha/graphql-typed-document-node is an extension of a graphql DocumentNode that carries the typing of variables and return values. It would be nice if this could be supported, so that one gets...
Hi, please upgrade your dependency: warning supertest-graphql > [email protected]: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see...
Hi, with supertest I can read headers from res.headers with this code ``` const supertest = require("supertest"); const request = supertest(process.env.URL); request .post(endpoint_public) .send({ query: qGetJwt, }) .expect(200) .end((err: any,...