# Issue

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

Structured issue found during a test run.

```ds title="Issue"
export struct Issue {
    kind: IssueKind;
    message: string;
    location: SourceLocation;
    details: Details;
    artifacts: [ArtifactId];
}
```

[language/library/src/test/issue.ds:29:44](https://github.com/destack-sh/destack/blob/main/language/library/src/test/issue.ds#L29-L44)

## Members

### `kind: IssueKind`

Issue kind.

### `message: string`

Human-readable issue message.

### `location: SourceLocation`

Source location when available.

### `details: Details`

Structured issue details.

### `artifacts: [ArtifactId]`

Related artifact identifiers.
