---
title: testing.shouldErrorWithCode() function
description: testing.shouldErrorWithCode() calls a function that catches any error and checks that the error matches the expected value.
url: https://docs.influxdata.com/flux/v0/stdlib/internal/testing/shoulderrorwithcode/
estimated_tokens: 191
product: Flux
version: v0
publisher: InfluxData
canonical: https://docs.influxdata.com/flux/v0/stdlib/internal/testing/shoulderrorwithcode/
date: '2024-04-08T16:01:02-06:00'
lastmod: '2024-04-08T16:01:02-06:00'
---

* Flux 0.182.0+

InfluxDB support

`testing.shouldErrorWithCode()` calls a function that catches any error and checks that the error matches the expected value.

##### Function type signature

```js
(code: uint, fn: () => A, want: regexp) => stream[{match: bool, code: uint, _diff: string}]
```

For more information, see [Function type signatures](/flux/v0/function-type-signatures/).

## Parameters

### fn

(Required)
Function to call.

### want

(Required)
Regular expression to match the expected error.

### code

(Required)
Which flux error code to expect

## Examples

### Test die function errors

```js
import "testing"

testing.shouldErrorWithCode(fn: () => die(msg: "error message"), want: /error message/, code: 3)
```

[tests](/flux/v0/tags/tests/)
