mirror of
https://github.com/langgenius/dify.git
synced 2026-09-19 10:11:30 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
16 lines
544 B
Gherkin
16 lines
544 B
Gherkin
@apps @core
|
|
Feature: Use a shared workflow app
|
|
|
|
@unauthenticated
|
|
Scenario: Access a shared workflow app without authentication
|
|
Given a workflow app has been published and shared via API
|
|
When I open the shared app URL
|
|
Then the shared app page should be accessible
|
|
|
|
@unauthenticated
|
|
Scenario: Run a shared workflow app without authentication
|
|
Given a workflow app has been published and shared via API
|
|
When I open the shared app URL
|
|
And I run the shared workflow app
|
|
Then the shared workflow run should succeed
|