Files
cypress/apollo.config.js
Jessica Sachs 30a14ed65e feat: adding alert component with markdown (#19152)
Co-authored-by: ElevateBart <ledouxb@gmail.com>
Co-authored-by: Barthélémy Ledoux <bart@cypress.io>
2021-12-02 22:42:02 -05:00

15 lines
443 B
JavaScript

const path = require('path')
// For use with Apollo Extension for VSCode:
// https://www.apollographql.com/docs/devtools/editor-plugins/
module.exports = {
client: {
service: {
name: 'cypress-io',
localSchemaFile: path.join(__dirname, 'packages/graphql/schemas/schema.graphql'),
},
tagName: 'gql',
includes: [path.join(__dirname, 'packages/{launchpad,app,frontend-shared}/src/**/*.{vue,ts,js,tsx,jsx}')],
},
}