[Runtime
](../../../index.md)[Package Manager
](../../../pm/cli/install/index.md)[Bundler
](../../../bundler/index.md)[Test Runner
](../../../test/index.md)[Guides
](../../index.md)[Reference
](https://bun.com/reference)[Blog
](https://bun.com/blog)[Feedback
](../../../feedback/index.md)
To skip a test with the Bun test runner, use the test.skip function.
test.ts
import { test } from "bun:test";
test.skip("unimplemented feature", () => {
expect(Bun.isAwesome()).toBe(true);
});
Running bun test will not execute this test. It will be marked as skipped in the terminal output.
terminal
bun test
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 files. [74.00ms]
See also:
Was this page helpful?
[
Selectively run tests concurrently with glob patterns
Previous
](../concurrent-test-glob/index.md)[
Mark a test as a "todo" with the Bun test runner
Next
](../todo-tests/index.md)