Something went wrong while fetching comments. Please try again.
Created by: tjkandala
(review with whitespace hidden)
We want to ensure that the VS Code extension delivers a quality experience to enterprise users. These users typically point the extension towards a Sourcegraph instance that is multiple versions behind the latest release. There are some bugs currently damaging the enterprise experience, and there may be new bugs introduced even as users' orgs upgrade as we iterate on feature code.
GraphQLError [Object]: Cannot query field "query" on type "SearchContext"
GraphQLError [Object]: Unknown type "Event". Did you mean "Alert", "EventLog", or "Int"?
Add ability to run integration tests against older versions of the GraphQL API.
yarn update-backcompat-schema
in client/vscode
(useful when bumping oldest supported version)@graphql-tools/mock
and @graphql-tools/schema
to implement "resolver-based testing" vs "operation-based testing" (not sure if these are standard terms). Why couldn't we add backcompat tests with our existing setup?
@graphql-tools/mock
will return default values for scalar types.CONTRIBUTING.md
then too.Check out the client app preview documentation to learn more.