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

https://github.com/flagpolejs/graphql-scenario

Flagpole Add-On for GraphQL Testing
https://github.com/flagpolejs/graphql-scenario

Last synced: over 1 year ago
JSON representation

Flagpole Add-On for GraphQL Testing

Awesome Lists containing this project

README

          

# graphql-scenario

Flagpole Add-On for GraphQL Testing

```typescript
import flagpole from "flagpole";
import GraphQLScenario, { gql } from "@flagpolejs/graphql-scenario";

flagpole("SpaceX GraphQL API", async (suite) => {
suite
.scenario("Get Last 10 Launches", GraphQLScenario)
.open("https://api.spacex.land/graphql")
.setQuery(
gql`
query {
launchesPast(limit: 10) {
mission_name
launch_date_local
launch_site {
site_name_long
}
}
}
`
)
.next(async (context) => {
context.comment(context.response.body);
const launches = await context.exists("data.launchesPast");
launches.is.array();
launches.length.assert().equals(10);
});
});
```