---
title: suite
source: https://github.com/remix-run/remix/blob/main/packages/test/src/lib/framework.ts#L180
---

# suite

## Summary

Alias for [`describe`](/api/remix/test/function/describe/).

## Signature

```ts
const suite: (name: string, fn: () => void) => void;

const suite: (name: string, meta: SuiteMeta, fn: () => void) => void;

```