Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cypress Scripts - Create from git add flow ODC-4976 #7103

Merged
merged 4 commits into from Nov 30, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 19 additions & 17 deletions frontend/packages/dev-console/integration-tests/README.md
Expand Up @@ -6,35 +6,37 @@ Folder structure of cypress cucumber framework

```
frontend/packages/dev-console/integration-tests/
├── support <--- cypress cucumber support configurations
| ├── commands <--- add commands to Cypress 'cy.' global, other support configurations
├── support <--- cypress cucumber support configurations
| ├── commands <--- add commands to Cypress 'cy.' global, other support configurations
|  | └── index.ts
|  | └── app.ts <--- hooks are added in this file
| ├── constants <--- enums required for dev-console scripts
|  | └── app.ts <--- hooks are added in this file
| ├── pageObjects <--- helper objects
|  | └── add-fow-po.ts <--- helper objects related to add page - git, catalog, container
| ├── constants <--- enums required for dev-console scripts
│   | └── add.ts
| | └── global.ts
| ├── pages <--- helper objects and page functions
│   | ├── add-flow <--- Add flow related helper objects and page functions
| ├── pages <--- page functions
│   | ├── add-flow <--- Add flow related helper objects and page functions
| | | └──add-page.ts
| | └── app.ts <--- Re-usable helper objects and page functions
| ├── step-definitions <--- cucumber step implementations
│   | ├── common <--- Re-usable dev-console step definitions
| | └── app.ts <--- Re-usable helper objects and page functions
| ├── step-definitions <--- cucumber step implementations
│   | ├── common <--- Re-usable dev-console step definitions
| | └──common.ts
| | └──project-creation.ts
├── features
| ├── addFlow <--- Add flow gherkin scenarios
| ├── addFlow <--- Add flow gherkin scenarios
| | └──create-from-git.feature
| ├── topology <--- Topology gherkin scenarios
| ├── topology <--- Topology gherkin scenarios
| | └──chart-area-visual.feature
| ├── pipelines <--- Pipelines gherkin scenarios
| ├── pipelines <--- Pipelines gherkin scenarios
| | └──create-from-builder-page.feature
| ├── knative <--- Knative gherkin scenarios
| ├── knative <--- Knative gherkin scenarios
| | └──create-event-sources.feature
| ├── helm <--- Helm gherkin scenarios
| ├── helm <--- Helm gherkin scenarios
| | └──helm-navigation.feature
| ├── BestPractices.md <--- Gherkin script standards
├── fixtures <--- Test data required for scripts
├── cypress.json <--- cypress configuration file
| ├── BestPractices.md <--- Gherkin script standards
├── fixtures <--- Test data required for scripts
├── cypress.json <--- cypress configuration file

```

Expand Down
@@ -1,7 +1,7 @@
{
"integrationFolder": "features",
"testFiles": "**/*.{feature,features}",
"defaultCommandTimeout": 30000,
"defaultCommandTimeout": 40000,
"viewportWidth": 1920,
"viewportHeight": 1080,
"watchForFileChanges": true,
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.