dify/e2e/features/apps/web-app-service.feature
yyh 04f9026724
fix(web): show unavailable state for disabled Web Apps (#39392)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-22 03:32:40 +00:00

20 lines
831 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 overview page
And I open the app information panel
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