# these-are-tests

> Run and describe tests

Latest version **1.1.1** (published 2020-03-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install these-are-tests
pnpm add these-are-tests
yarn add these-are-tests
bun add these-are-tests
```

Provides the command `these-are-tests`.

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2020-03-15 |
| First published | 2019-10-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Node | >=13.2.0 |
| Dependencies | 0 |
| Unpacked size | 5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Mickey Burks |
| Maintainers | micburks |
| Keywords | testing, test, runner |

## Links

- npm: https://www.npmjs.com/package/these-are-tests
- Repository: https://github.com/micburks/these-are-tests
- Homepage: https://github.com/micburks/these-are-tests#readme
- Issues: https://github.com/micburks/these-are-tests/issues
- npm.io page: https://npm.io/package/these-are-tests

## Alternatives

- [duck](https://npm.io/package/duck.md) — 4.2M weekly downloads
- [ava](https://npm.io/package/ava.md) — 560.2K weekly downloads
- [storybook-addon-module-mock](https://npm.io/package/storybook-addon-module-mock.md) — 71.7K weekly downloads
- [vest](https://npm.io/package/vest.md) — 50.1K weekly downloads
- [@ethereum-waffle/mock-contract](https://npm.io/package/@ethereum-waffle/mock-contract.md) — 40.0K weekly downloads

## Recent versions

- 1.1.1 (latest) — 2020-03-15
- 1.1.0 — 2020-03-15
- 1.0.4 — 2020-01-19
- 1.0.3 — 2020-01-18
- 1.0.2 — 2019-12-22
- 1.0.1 — 2019-10-20
- 1.0.0 — 2019-10-19

## README

# these-are-tests

Run and describe tests

```js
// tests/simple.test.js

import {describe} from 'these-are-tests';

const {it, xit} = describe('simple tests');

it('executes successfully', async () => {
  assert(true);
});

xit('skips these tests', async () => {
  console.log('TODO');
});
```

```bash
$ npx these-are-tests tests

simple tests
 ● skips these tests
 ✔ executes successfully
```

The `these-are-tests` binary will search for any files with the `.test.js`
extension in the directory you provide to the CLI.

---
_Source: https://npm.io/package/these-are-tests · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
