mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-14 03:00:21 -06:00
* move runs to the app * remove unused import * fix routing to runs page * fix some spacing * make sure all the solid icons are available * use the new icons in the runs * Add and test some useful states * make and use skeleton for runs * fix spacing and containers * fix filerow after refactoring * fixes on config files * best skeletton ever * fix review design with ryan * add a composables * add the e2e tests of runs WIP * remove progress circle * merge runs page and runspage * remove anti blinker * yagni the props * use main instead of div for runs page * simplify icons architecture * use a lookup map to get icons * remove tabs from file * fix: add a few more states * Add runerror * fixes for rendering mock cloud data in e2e (#18654) Co-authored-by: ElevateBart <ledouxb@gmail.com> * Fix could not find browser * add data-cy flags and fix tests * e2e tests added and passing * fix tests * remove RunError since we don't have the model yet * all test shells are ready * add necessary runs icons * Make RunConnect component * better render * fix typecheck * fix icon for runs page * center the connect page vertically * create the Empty page * fix alignments * fix the purple * adjust copy button size * final touches * detail fixing * better transition patterns * fix scroll * fix gql generation * fix some unneeded changes * fix some typescript * fix last ts * better tooling for copy button in shiki * refactor: fix path to terminal prompt Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> * refactor: invert conditions in RunsConnect * fix: make connect before checking if there is data * fix-shrinking page * fix: code tripping over export default * fix one laste test * fix: resolve the title of the project * refactor: remove the "top" query * fix: add the top 10 back... @tgriesser * all component tests work and pass * typo in comment Co-authored-by: Zachary Williams <ZachJW34@gmail.com> * fix correclty * change maybe projects back * use transition from design system * fix compoennt test Co-authored-by: Tim Griesser <tgriesser10@gmail.com> Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Zachary Williams <ZachJW34@gmail.com>
15 lines
427 B
JavaScript
15 lines
427 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')],
|
|
},
|
|
}
|