1.1.1 • Published 4 years ago

these-are-tests v1.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

these-are-tests

Run and describe tests

// 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');
});
$ 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.

1.1.1

4 years ago

1.1.0

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

5 years ago

1.0.0

5 years ago