# `Volt.Test.Result`
[🔗](https://github.com/elixir-volt/volt/blob/v0.16.0/lib/volt/test/result.ex#L1)

Defines the structured result contract returned by Volt JavaScript test runtimes.

# `t`

```elixir
@type t() :: %Volt.Test.Result{
  duration: non_neg_integer(),
  failed: non_neg_integer(),
  file: String.t(),
  skipped: non_neg_integer(),
  status: :passed | :failed,
  tests: [Volt.Test.Result.Test.t()],
  total: non_neg_integer()
}
```

# `decode`

Decodes a JSON string into this struct.

# `decode!`

Decodes a JSON string into this struct, raising on failure.

# `dump`

Dumps this struct into JSON-shaped data, respecting JSON field names.

# `from_map`

Builds this struct from a decoded JSON map.

# `from_map!`

Builds this struct from a decoded JSON map, raising on failure.

# `json_schema`

Returns a JSON Schema-compatible schema map.

# `schema`

Returns a JSON Schema-compatible schema map.

# `to_map`

Converts this struct into a JSON-shaped map.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
