bigtestjs / server

All BigTest development has moved to https://github.com/thefrontside/bigtest
https://github.com/thefrontside/bigtest
2 stars 1 forks source link

Show state of connected browsers from the GraphQL interface #33

Closed cowboyd closed 4 years ago

cowboyd commented 4 years ago

In order to see which browsers are connected to the bigtest server, we should be able to query it directly:

type Browser {
  name: string!;
  platform: string!;
  vendor: string!;
  version: string!;
}

This means that when we connect a browser, we'll need to send a message from the agent to the orchestrator, update the state somehow, and then be able to query that state.

cowboyd commented 4 years ago

This was implemented with #62