# Displaying only discovered issues above a specific severity level

You can filter the test results that are shown in the CLI terminal, and display only issues with a specific severity level and higher.

**To display only issues above a specific severity level:**

* In the terminal, enter:

```
snyk code test <path/to/folder> --severity-threshold=<low|medium|high|critical>
```

The results will include only issues with the specified severity level and issues with a higher severity level.

For example:

In the **snyk-goof-master** folder, 8 issues were found - 4 with a High severity level and 4 with Medium:

![](https://2533899886-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MdwVZ6HOZriajCf5nXH%2Fuploads%2F6vyDfGgr4fpKzbjjm4It%2FSnyk%20Code%20-%20CLI%20-%20snyk%20code%20test%20-%20Results%20-%20Filter%20Severity%20-%20Example%20-%20before%20-%202.png?alt=media\&token=3aff742c-0b43-4df9-b0e1-965924d10799)

To display only issues with a High severity level and above, we enter:

```
snyk code test /Users/username/Documents/Repositories/snyk-goof-master --severity-threshold=high
```

The results show only 4 issues, all with a High severity level. Issues with a lower severity level are not displayed:

![](https://2533899886-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MdwVZ6HOZriajCf5nXH%2Fuploads%2FXy4FUu2zOXs4ktKj9vGG%2FSnyk%20Code%20-%20CLI%20-%20snyk%20code%20test%20-%20Results%20-%20Filter%20Severity%20-%20Example%20-%20after%20-%202.png?alt=media\&token=63042f8f-87be-4136-a02a-9dc035143338)
