mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 16:55:59 +03:00
[PR #4218] [feature]: workflows for API testing #4707
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#4707
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hoppscotch/hoppscotch/pull/4218
Author: @ikp-773
Created: 7/28/2024
Status: 🔄 Open
Base:
main← Head:flows📝 Commits (10+)
c7eb4dffeat: setup vue-flows and UI for send-request node09ef0d1fix: add @vue-flow/background to dependenciesed926c0feat: output node and json viewer166bfbeMerge pull request #2 from SreeXD/output-node988fe1cfeat: add BlockMenu componentb3efdd8feat: refactor BlockMenu601fac0feat: add type annotations for BlockMenu3d6ce3ffeat: update BlockMenu components list in flow pagebf31777chore: remove flows-neko page and update flows page9d09993Merge pull request #3 from SreeXD/block-menu-node📊 Changes
13 files changed (+1248 additions, -97 deletions)
View changed files
➕
packages/hoppscotch-common/assets/icons/flows.svg(+3 -0)📝
packages/hoppscotch-common/locales/en.json(+8 -1)📝
packages/hoppscotch-common/package.json(+5 -1)📝
packages/hoppscotch-common/src/components.d.ts(+16 -0)📝
packages/hoppscotch-common/src/components/app/Sidenav.vue(+7 -0)➕
packages/hoppscotch-common/src/components/flows/BlockMenu.vue(+85 -0)➕
packages/hoppscotch-common/src/components/flows/JsonViewer.vue(+104 -0)➕
packages/hoppscotch-common/src/components/flows/OutputNode.vue(+153 -0)➕
packages/hoppscotch-common/src/components/flows/SelectorNode.vue(+130 -0)➕
packages/hoppscotch-common/src/components/flows/SendRequestNode.vue(+327 -0)➕
packages/hoppscotch-common/src/components/flows/StartNode.vue(+16 -0)➕
packages/hoppscotch-common/src/pages/flows.vue(+183 -0)📝
pnpm-lock.yaml(+211 -95)📄 Description
Closes # 4214[WIP]
A node-based system for setting up test workflows for APIs in Hoppscotch. Users can design a graph with nodes representing REST requests, response outputs, selectors, and more. By executing this graph, they can verify the functionality of the entire API. For example, a workflow graph might include creating a user, editing the user details, and finally deleting the user. This approach ensures comprehensive testing and validation of API endpoints.
What's changed
video demo = https://www.youtube.com/watch?v=RVHU2fqD9YE
Added a new section flows in the sidebar.
Notes to reviewers
This issue is still a work in progress, and not all features have been implemented yet.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.