@@ -51,23 +51,23 @@ Feature: Docker commands in new projects
5151
5252 Scenario : Execute docker jupyter notebook target
5353 Given I have executed the kedro command "docker build"
54- When I execute the kedro command "docker jupyter notebook"
55- Then Jupyter Server should run on port 8888
54+ When I execute the kedro command "docker jupyter notebook --IdentityProvider.token=test-token-abc123 "
55+ Then Jupyter Server should run on port 8888 given token test-token-abc123
5656
5757 Scenario : Execute docker jupyter notebook target on custom port
5858 Given I have executed the kedro command "docker build"
59- When I execute the kedro command "docker jupyter notebook --port 8899"
60- Then Jupyter Server should run on port 8899
59+ When I execute the kedro command "docker jupyter notebook --IdentityProvider.token=test-token-abc123 -- port 8899"
60+ Then Jupyter Server should run on port 8899 given token test-token-abc123
6161
6262 Scenario : Execute docker jupyter lab target
6363 Given I have executed the kedro command "docker build"
6464 When I execute the kedro command "docker jupyter lab --IdentityProvider.token=test-token-abc123"
65- Then Jupyter Server should run on port 8888
65+ Then Jupyter Server should run on port 8888 given token test-token-abc123
6666
6767 Scenario : Execute docker jupyter lab target on custom port
6868 Given I have executed the kedro command "docker build"
6969 When I execute the kedro command "docker jupyter lab --IdentityProvider.token=test-token-abc123 --port 8899"
70- Then Jupyter Server should run on port 8899
70+ Then Jupyter Server should run on port 8899 given token test-token-abc123
7171
7272 Scenario : Jupyter port already used
7373 Given I have executed the kedro command "docker build"
0 commit comments