[PR #4441] [CLOSED] Feat/back collection runner #4799

Closed
opened 2026-03-17 02:18:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/4441
Author: @anwarulislam
Created: 10/16/2024
Status: Closed

Base: release/2023.12.0Head: feat/back-collection-runner


📝 Commits (10+)

  • 55224a9 feat: collection runner component added
  • 9e900f8 feat: collection runner added
  • 3351d53 feat: setup index.vue for collection runner
  • 621de4d feat: test runner config added
  • fa6e72b chore: test runner service added
  • 9dbd906 chore: tailwind preset update
  • ddf9535 fix: runner config item padding
  • 3c9c0b2 fix: runner config setup
  • 7724dc6 fix: runner result adapter
  • 9f7462b feat: request runner stop config

📊 Changes

49 files changed (+1888 additions, -188 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 packages/hoppscotch-common/assets/themes/base-themes.scss (+1 -0)
📝 packages/hoppscotch-common/locales/en.json (+17 -2)
📝 packages/hoppscotch-common/src/components.d.ts (+15 -0)
📝 packages/hoppscotch-common/src/components/collections/AddRequest.vue (+1 -1)
📝 packages/hoppscotch-common/src/components/collections/Collection.vue (+16 -2)
📝 packages/hoppscotch-common/src/components/collections/MyCollections.vue (+19 -0)
📝 packages/hoppscotch-common/src/components/collections/index.vue (+40 -3)
📝 packages/hoppscotch-common/src/components/embeds/index.vue (+2 -2)
📝 packages/hoppscotch-common/src/components/history/index.vue (+1 -0)
📝 packages/hoppscotch-common/src/components/http/Request.vue (+2 -2)
📝 packages/hoppscotch-common/src/components/http/RequestTab.vue (+3 -3)
📝 packages/hoppscotch-common/src/components/http/Response.vue (+3 -3)
📝 packages/hoppscotch-common/src/components/http/TabHead.vue (+2 -2)
📝 packages/hoppscotch-common/src/components/http/TestResult.vue (+28 -20)
packages/hoppscotch-common/src/components/http/test/Folder.vue (+94 -0)
packages/hoppscotch-common/src/components/http/test/Request.vue (+86 -0)
packages/hoppscotch-common/src/components/http/test/ResultFolder.vue (+95 -0)
packages/hoppscotch-common/src/components/http/test/ResultRequest.vue (+79 -0)
packages/hoppscotch-common/src/components/http/test/Runner.vue (+128 -0)

...and 29 more files

📄 Description

Closes #

What's changed

Notes to reviewers


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/4441 **Author:** [@anwarulislam](https://github.com/anwarulislam) **Created:** 10/16/2024 **Status:** ❌ Closed **Base:** `release/2023.12.0` ← **Head:** `feat/back-collection-runner` --- ### 📝 Commits (10+) - [`55224a9`](https://github.com/hoppscotch/hoppscotch/commit/55224a9b577c853062dc23f67ac35fe82e38b522) feat: collection runner component added - [`9e900f8`](https://github.com/hoppscotch/hoppscotch/commit/9e900f8f1cd0be5557e31f6dfd0cf45830ffcd17) feat: collection runner added - [`3351d53`](https://github.com/hoppscotch/hoppscotch/commit/3351d537752b55dc86a3440d5e75b9789e9411ca) feat: setup index.vue for collection runner - [`621de4d`](https://github.com/hoppscotch/hoppscotch/commit/621de4d507a0b1521b41475239295b9d6ec974a6) feat: test runner config added - [`fa6e72b`](https://github.com/hoppscotch/hoppscotch/commit/fa6e72b0150ae120e8019830f1346453e0a4403b) chore: test runner service added - [`9dbd906`](https://github.com/hoppscotch/hoppscotch/commit/9dbd90673c765e5aa922363307a1b428cc65757b) chore: tailwind preset update - [`ddf9535`](https://github.com/hoppscotch/hoppscotch/commit/ddf9535a33ef0546d4f5625c6dc79455fe725706) fix: runner config item padding - [`3c9c0b2`](https://github.com/hoppscotch/hoppscotch/commit/3c9c0b230be89ad987aca5e43920fcd39a0df0f7) fix: runner config setup - [`7724dc6`](https://github.com/hoppscotch/hoppscotch/commit/7724dc6e336ad0ba57d21dbbf1844b6084b9c185) fix: runner result adapter - [`9f7462b`](https://github.com/hoppscotch/hoppscotch/commit/9f7462b096a8af3230e5f6e19d7c1cf60a658822) feat: request runner stop config ### 📊 Changes **49 files changed** (+1888 additions, -188 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `packages/hoppscotch-common/assets/themes/base-themes.scss` (+1 -0) 📝 `packages/hoppscotch-common/locales/en.json` (+17 -2) 📝 `packages/hoppscotch-common/src/components.d.ts` (+15 -0) 📝 `packages/hoppscotch-common/src/components/collections/AddRequest.vue` (+1 -1) 📝 `packages/hoppscotch-common/src/components/collections/Collection.vue` (+16 -2) 📝 `packages/hoppscotch-common/src/components/collections/MyCollections.vue` (+19 -0) 📝 `packages/hoppscotch-common/src/components/collections/index.vue` (+40 -3) 📝 `packages/hoppscotch-common/src/components/embeds/index.vue` (+2 -2) 📝 `packages/hoppscotch-common/src/components/history/index.vue` (+1 -0) 📝 `packages/hoppscotch-common/src/components/http/Request.vue` (+2 -2) 📝 `packages/hoppscotch-common/src/components/http/RequestTab.vue` (+3 -3) 📝 `packages/hoppscotch-common/src/components/http/Response.vue` (+3 -3) 📝 `packages/hoppscotch-common/src/components/http/TabHead.vue` (+2 -2) 📝 `packages/hoppscotch-common/src/components/http/TestResult.vue` (+28 -20) ➕ `packages/hoppscotch-common/src/components/http/test/Folder.vue` (+94 -0) ➕ `packages/hoppscotch-common/src/components/http/test/Request.vue` (+86 -0) ➕ `packages/hoppscotch-common/src/components/http/test/ResultFolder.vue` (+95 -0) ➕ `packages/hoppscotch-common/src/components/http/test/ResultRequest.vue` (+79 -0) ➕ `packages/hoppscotch-common/src/components/http/test/Runner.vue` (+128 -0) _...and 29 more files_ </details> ### 📄 Description <!-- Thanks for creating this pull request 🤗 Please make sure that the pull request is limited to one type (docs, feature, etc.) and keep it as small as possible. You can open multiple prs instead of opening a huge one. --> <!-- If this pull request closes an issue, please mention the issue number below --> Closes # <!-- Issue # here --> <!-- Add an introduction into what this PR tries to solve in a couple of sentences --> ### What's changed <!-- Describe point by point the different things you have changed in this PR --> <!-- You can also choose to add a list of changes and if they have been completed or not by using the markdown to-do list syntax - [ ] Not Completed - [x] Completed --> ### Notes to reviewers <!-- Any information you feel the reviewer should know about when reviewing your PR --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 02:18:08 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#4799
No description provided.