procrastinate
v1.3.0
Published
Quickly create pending specs for your favorite test frameworks.
Readme
Procrastinate
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 presentUsage
npx procrastinate jest < test.jsjest 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');
});
});