procrastinate

1.3.0 • Public • Published

Procrastinate

NPM Version Build Status Code Climate js-semistandard-style

Quickly create pending specs for your favorite test frameworks.

Example

Input

70 characters of the Procrastinate DSL

Array
  #indexOf()
    should return -1 when the value is not present

Usage

npx procrastinate jest < test.js

jest can be replaced with any supported formatter

Output

144 characters of pending Jest specs

describe('Array', () => {
  describe('#indexOf()', () => {
    test.todo('should return -1 when the value is not present');
  });
});

Supported formatters

Readme

Keywords

Package Sidebar

Install

npm i procrastinate

Weekly Downloads

2

Version

1.3.0

License

MIT

Unpacked Size

9.67 kB

Total Files

12

Last publish

Collaborators

  • nickmccurdy