gitextract_z09lw4cd/ ├── .all-contributorsrc ├── .babelrc ├── .github/ │ ├── issue_template.md │ ├── stale.yml │ └── workflows/ │ └── nodejs.yml ├── .gitignore ├── .prettierrc ├── .vscode/ │ └── launch.json ├── CONTRIBUTING.MD ├── LICENSE ├── README.md ├── Troubleshooting.md ├── branding/ │ ├── Github Readme Banner.psd │ └── small-logo.psd ├── integration/ │ ├── cypress/ │ │ ├── fixtures/ │ │ │ └── example.json │ │ ├── integration/ │ │ │ └── basic/ │ │ │ └── basic-functionality.js │ │ ├── plugins/ │ │ │ └── index.js │ │ └── support/ │ │ ├── commands.js │ │ └── index.js │ ├── cypress.json │ ├── kill.js │ ├── package.json │ └── projects/ │ └── basic/ │ ├── __snapshots__/ │ │ └── test-snapshot-failure.spec.js.snap │ ├── app.js │ ├── babel.config.js │ ├── package.json │ ├── test-all-good.spec.js │ ├── test-few-failure.spec.js │ ├── test-only.spec.js │ ├── test-snapshot-failure.spec.js │ └── test-snapshot-text.spec.js ├── nodemon.json ├── package.json ├── scripts/ │ ├── webpack.server.config.js │ └── webpack.ui.config.js ├── server/ │ ├── api/ │ │ ├── app/ │ │ │ ├── app.ts │ │ │ └── resolver.ts │ │ ├── index.ts │ │ ├── runner/ │ │ │ ├── resolver.ts │ │ │ ├── status.ts │ │ │ └── type.ts │ │ └── workspace/ │ │ ├── coverage.ts │ │ ├── resolver.ts │ │ ├── summary.ts │ │ ├── test-file.ts │ │ ├── test-item.ts │ │ ├── test-result/ │ │ │ ├── console-log.ts │ │ │ ├── file-result.ts │ │ │ └── test-item-result.ts │ │ ├── tree.ts │ │ └── workspace.ts │ ├── event-emitter/ │ │ └── index.ts │ ├── index.ts │ ├── logger.ts │ ├── services/ │ │ ├── ast/ │ │ │ ├── inspector.ts │ │ │ └── parser.ts │ │ ├── cli.ts │ │ ├── config-resolver.ts │ │ ├── file-watcher/ │ │ │ └── index.ts │ │ ├── jest-manager/ │ │ │ ├── cli-args.ts │ │ │ ├── index.ts │ │ │ └── scripts/ │ │ │ ├── patch.js │ │ │ └── reporter.js │ │ ├── project.ts │ │ ├── result-handler-api.ts │ │ ├── results.ts │ │ └── types.ts │ ├── static-files.ts │ └── typings.d.ts ├── tsconfig.json ├── tsconfig.server.json └── ui/ ├── apollo-client.ts ├── app.gql ├── app.tsx ├── components/ │ └── button.tsx ├── container.tsx ├── coverage-panel/ │ └── index.tsx ├── error.tsx ├── hooks/ │ └── use-keys.ts ├── index.tsx ├── loading.tsx ├── query.gql ├── runner-status-query.gql ├── runner-status-subs.gql ├── search/ │ └── index.tsx ├── set-selected-file.gql ├── sidebar/ │ ├── execution-indicator.tsx │ ├── file-item.tsx │ ├── index.tsx │ ├── logo.tsx │ ├── run.gql │ ├── set-collect-coverage.gql │ ├── set-watch-mode.gql │ ├── should-collect-coverage.gql │ ├── summary/ │ │ └── index.tsx │ ├── transformer.ts │ └── tree.tsx ├── split-panel-style.ts ├── stop-runner.gql ├── summary-query.gql ├── summary-subscription.gql ├── test-file/ │ ├── console-panel/ │ │ └── index.tsx │ ├── error-panel/ │ │ └── index.tsx │ ├── file-items-subscription.gql │ ├── index.tsx │ ├── open-failure.gql │ ├── query.gql │ ├── result.gql │ ├── run-file.gql │ ├── subscription.gql │ ├── summary/ │ │ ├── index.tsx │ │ ├── open-in-editor.gql │ │ └── open-snap-in-editor.gql │ ├── test-indicator.tsx │ ├── test-item.tsx │ ├── transformer.ts │ ├── update-snapshot.gql │ └── use-subscription.tsx ├── theme.ts └── typings.d.ts