An open API service indexing awesome lists of open source software.

https://github.com/stepzen-dev/gqltest

Testing of GraphQL APIs
https://github.com/stepzen-dev/gqltest

Last synced: over 1 year ago
JSON representation

Testing of GraphQL APIs

Awesome Lists containing this project

README

          

# gqltest

Testing of GraphQL APIs

# Work in progress

## Sample use

```
describe('Starwars', function () {
afterEach('log-failure', logOnFail);

it('hero-data', function () {
execute({
test: this,
endpoint,
request: {
query: '{hero {name}}',
},
expected: {hero: {name: 'R2-D2'}},
})
})

})
```