mirror of
https://github.com/langgenius/dify.git
synced 2026-08-30 04:23:20 +08:00
Co-authored-by: zhangx1n <zhangxin@dify.ai> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
19 lines
794 B
Gherkin
19 lines
794 B
Gherkin
@apps @authenticated @core
|
|
Feature: Manage Web App service
|
|
|
|
Scenario: Disable and restore a published workflow Web App
|
|
Given I am signed in as the default E2E admin
|
|
And a new runnable workflow app has been published
|
|
When I navigate to the app access point page
|
|
Then the Web App should be in service
|
|
When an anonymous visitor opens the Web App
|
|
Then the published workflow Web App should be accessible
|
|
When I disable the Web App
|
|
Then the Web App should be disabled
|
|
When the anonymous visitor reloads the Web App
|
|
Then the published workflow Web App should be unavailable
|
|
When I enable the Web App
|
|
Then the Web App should be in service
|
|
When the anonymous visitor reloads the Web App
|
|
Then the published workflow Web App should be accessible
|