# ArtifactKind

`import { ArtifactKind } from "destack:test";`

Test artifact kind.

```ds title="ArtifactKind"
export enum ArtifactKind {
    Text = 1,
    Json = 2,
    Binary = 3,
    Image = 4,
    Trace = 5,
    Snapshot = 6,
    Benchmark = 7,
    Log = 8,
}
```

[language/library/src/test/artifact.ds:7:24](https://github.com/destack-sh/destack/blob/main/language/library/src/test/artifact.ds#L7-L24)

## Variants

### `Text = 1`

Plain text artifact.

### `Json = 2`

Structured JSON artifact.

### `Binary = 3`

Binary artifact.

### `Image = 4`

Image artifact.

### `Trace = 5`

Execution trace artifact.

### `Snapshot = 6`

Snapshot artifact.

### `Benchmark = 7`

Benchmark artifact.

### `Log = 8`

Log artifact.
