diff --git a/packages/@sparrow-workspaces/src/features/testflow-explorer/components/index.ts b/packages/@sparrow-workspaces/src/features/testflow-explorer/components/index.ts index 2a3026e7cc..91fe97bf92 100644 --- a/packages/@sparrow-workspaces/src/features/testflow-explorer/components/index.ts +++ b/packages/@sparrow-workspaces/src/features/testflow-explorer/components/index.ts @@ -22,4 +22,5 @@ export { default as ScheduleRow } from "./schedule-row/ScheduleRow.svelte"; export { default as TestflowNavigator } from "./testflow-navigator/TestflowNavigator.svelte"; export { default as TestDataRow } from "./test-data-row/TestDataRow.svelte"; export { default as RequestAssertionsTestFlow } from "./request-tests/RequestAssertionsTestFlow.svelte"; +export { default as RequestTestsTestFlow } from "./request-tests/RequestTestsTestFlow.svelte"; export { default as ResponseTestResults } from "./test-results-panel/ResponseTestResults.svelte"; diff --git a/packages/@sparrow-workspaces/src/features/testflow-explorer/components/request-navigator/RequestNavigatorTestFlow.svelte b/packages/@sparrow-workspaces/src/features/testflow-explorer/components/request-navigator/RequestNavigatorTestFlow.svelte index 2c13895b52..e18d1e1e50 100644 --- a/packages/@sparrow-workspaces/src/features/testflow-explorer/components/request-navigator/RequestNavigatorTestFlow.svelte +++ b/packages/@sparrow-workspaces/src/features/testflow-explorer/components/request-navigator/RequestNavigatorTestFlow.svelte @@ -55,6 +55,11 @@ id: RequestSectionEnum.AUTHORIZATION, count: 0, }, + { + name: "Scripts", + id: RequestSectionEnum.TESTS, + count: 0, + }, { name: "Assertions", id: RequestSectionEnum.ASSERTIONS, diff --git a/packages/@sparrow-workspaces/src/features/testflow-explorer/components/request-tests/RequestTestsTestFlow.svelte b/packages/@sparrow-workspaces/src/features/testflow-explorer/components/request-tests/RequestTestsTestFlow.svelte new file mode 100644 index 0000000000..92a543ee0e --- /dev/null +++ b/packages/@sparrow-workspaces/src/features/testflow-explorer/components/request-tests/RequestTestsTestFlow.svelte @@ -0,0 +1,133 @@ + + +
JavaScript Code
+JavaScript Code
+