1.0.1 • Published 2 years ago

@flagpolejs/graphql-scenario v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

graphql-scenario

Flagpole Add-On for GraphQL Testing

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);
    });
});