Skip to content

Commit

Permalink
testing e2e fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi-kumar-pilla committed Nov 19, 2024
1 parent a44de36 commit fc5f76e
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion package/features/viz.feature
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,45 @@ Feature: Viz plugin in new project
Background:
Given I have prepared a config file with example code

Scenario: Execute viz with the earliest Kedro version that it supports
Given I have installed kedro version "0.18.3"
And I have run a non-interactive kedro new with pandas-iris starter
And I have installed the project's requirements
When I execute the kedro viz run command
Then kedro-viz should start successfully

Scenario: Execute viz with latest Kedro with lower-bound viz requirements
Given I have installed kedro version "latest"
And I have installed the lower-bound Kedro-viz requirements
And I have run a non-interactive kedro new with spaceflights-pandas starter
And I have installed the project's requirements
When I execute the kedro viz run command
Then kedro-viz should start successfully


Scenario: Execute viz with latest Kedro
Given I have installed kedro version "latest"
And I have run a non-interactive kedro new with spaceflights-pandas starter
And I have installed the project's requirements
When I execute the kedro viz run command
Then kedro-viz should start successfully

Scenario: Execute viz lite with the earliest Kedro version that it supports
Given I have installed kedro version "0.18.3"
And I have run a non-interactive kedro new with pandas-iris starter
When I execute the kedro viz run command with lite option
Then kedro-viz should start successfully

Scenario: Execute viz lite with latest Kedro
Given I have installed kedro version "latest"
And I have run a non-interactive kedro new with spaceflights-pandas starter
When I execute the kedro viz run command with lite option
Then kedro-viz should start successfully

Scenario: Compare viz responses in regular and lite mode
Given I have installed kedro version "latest"
And I have run a non-interactive kedro new with spaceflights-pandas starter
When I execute the kedro viz run command with lite option
Then I store the response from main endpoint
Given I have installed the project's requirements
When I execute the kedro viz run command
Then I compare the responses in regular and lite mode

0 comments on commit fc5f76e

Please sign in to comment.