# Skip tests with the Bun test runner (/docs/guides/test/skip-tests)

<!-- agent-signals: reading_time_min: 1 · est_tokens: 162 · updated: 2026-07-28 -->
Related: [Run your tests with the Bun test runner](/docs/guides/test/run-tests.md), [Run tests in watch mode with Bun](/docs/guides/test/watch-mode.md), [Migrate from Jest to Bun's test runner](/docs/guides/test/migrate-from-jest.md), [Mock functions in `bun test`](/docs/guides/test/mock-functions.md), [Spy on methods in `bun test`](/docs/guides/test/spy-on.md), [Set the system time in Bun's test runner](/docs/guides/test/mock-clock.md)

To skip a test with the Bun test runner, use the `test.skip` function.

```ts test.ts icon="/icons/typescript.svg"
import { test } from "bun:test";

test.skip("unimplemented feature", () => {
  expect(Bun.isAwesome()).toBe(true);
});
```

***

Running `bun test` doesn't execute this test. The terminal output marks it as skipped.

```sh terminal icon="terminal"
bun test
```

```txt
test.test.ts:
✓ add [0.03ms]
✓ multiply [0.02ms]
» unimplemented feature

 2 pass
 1 skip
 0 fail
 2 expect() calls
Ran 3 tests across 1 file. [74.00ms]
```

***

See also:

* [Mark a test as a todo](/guides/test/todo-tests)
* [Writing tests](/test/writing-tests)
