1.3.0 • Published 3 years ago

procrastinate v1.3.0

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

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

1.3.0

3 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.0

9 years ago

1.0.1

9 years ago

1.0.0

10 years ago