Skip to content

Commit

Permalink
Add ExUnit (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylekthompson authored Feb 23, 2023
1 parent 71e4433 commit bb10958
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"description": "The test framework which produced these results",
"oneOf": [
{ "$ref": "#/$defs/frameworks/.NET/xUnit" },
{ "$ref": "#/$defs/frameworks/Elixir/ExUnit" },
{ "$ref": "#/$defs/frameworks/Go/go test" },
{ "$ref": "#/$defs/frameworks/Go/Ginkgo" },
{ "$ref": "#/$defs/frameworks/JavaScript/Cypress" },
Expand Down Expand Up @@ -59,6 +60,16 @@
}
}
},
"Elixir": {
"ExUnit": {
"type": "object",
"required": ["language", "kind"],
"properties": {
"language": { "type": "string", "enum": ["Elixir"] },
"kind": { "type": "string", "enum": ["ExUnit"] }
}
}
},
"Go": {
"Ginkgo": {
"type": "object",
Expand Down

0 comments on commit bb10958

Please sign in to comment.