Member Junction
    Preparing search index...

    Client for executing tests through GraphQL. Uses the fire-and-forget pattern to avoid Azure proxy timeouts (~230s) on long-running test executions. Results are delivered via WebSocket PubSub.

    const testingClient = new GraphQLTestingClient(graphQLProvider);

    const result = await testingClient.RunTest({
    testId: "test-uuid",
    verbose: true,
    environment: "dev",
    onProgress: (progress) => console.log(progress.message)
    });

    const suiteResult = await testingClient.RunTestSuite({
    suiteId: "suite-uuid",
    parallel: true
    });
    Index

    Constructors

    Methods