Skip to content
This repository was archived by the owner on Jul 14, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 45 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,9 @@ components:
nullable: true
timeoutPerStep:
type: integer
required:
- id
- testTargetId

SuccessResponse:
type: object
Expand Down Expand Up @@ -732,7 +735,12 @@ components:
type: string
type:
type: string

required:
- id
- name
- testTargetId
- type

TestSuiteRequestCommons:
type: object
properties:
Expand Down Expand Up @@ -1427,6 +1435,20 @@ paths:
type: string
format: uuid
description: The ID of the test case
- name: environmentId
Comment thread
mxlnk marked this conversation as resolved.
in: query
required: false
schema:
type: string
format: uuid
description: Optional ID of the environment to use for the test case code
- name: executionUrl
in: query
required: true
schema:
type: string
format: url
description: URL of the app to test
responses:
'200':
description: Code for the test case
Expand All @@ -1438,6 +1460,8 @@ paths:
testCode:
type: string
description: The code representation of the test case
required:
- testCode
'404':
description: Test case not found

Expand Down Expand Up @@ -1523,6 +1547,25 @@ paths:
type: string
format: uuid
description: Optional ID of the environment to use for the test target configuration
- name: url
in: query
required: true
schema:
type: string
format: url
description: URL of the app to test
- name: outputDir
in: query
required: true
schema:
type: string
description: Directory to write the playwright output to
- name: headless
in: query
required: false
schema:
type: boolean
description: Whether to run the test in headless mode
responses:
"200":
description: Test target configuration
Expand All @@ -1531,6 +1574,7 @@ paths:
schema:
type: string
example: "Test target configuration details"

/apiKey/v2/test-targets/{testTargetId}/discoveries:
post:
summary: Create a discovery
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"author": "",
"license": "MIT",
"dependencies": {
"@playwright/test": "^1.54.1",
"commander": "^14.0.0",
"openapi-fetch": "^0.14.0",
"tsx": "^4.19.3"
Expand Down
38 changes: 38 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading