Skip to content

Commit

Permalink
feat: add expected and archived for TestCase (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
viveknair committed Jun 1, 2023
1 parent 5761941 commit c9a6a49
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -336,13 +336,17 @@ paths:
runId:
type: string
format: uuid
required:
- runId
application/json; charset=utf-8:
schema:
type: object
properties:
runId:
type: string
format: uuid
required:
- runId
get:
tags:
- Core
Expand Down Expand Up @@ -377,6 +381,11 @@ paths:
type: number
done:
type: number
required:
- total
- pending
- failure
- done

application/json; charset=utf-8:
schema:
Expand All @@ -396,7 +405,11 @@ paths:
type: number
done:
type: number

required:
- total
- pending
- failure
- done

components:
securitySchemes:
Expand Down Expand Up @@ -500,10 +513,17 @@ components:
type: string
format: date-time
description: The date and time when the test case was created
archivedAt:
type: string
format: date-time
description: The date and time when the test case was archived
updatedAt:
type: string
format: date-time
description: The date and time when the test case was last updated
expected:
type: string
description: The expected output for the test case
inputs:
type: object
description: The input data for the test case
Expand Down

0 comments on commit c9a6a49

Please sign in to comment.