1.0.1 • Published 7 years ago

flowsight v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

Flowsight

Example

/* globals flow task */
const assert = require('assert');


flow('As a user I should be able to resolve mathematics in JS', [
  task('set 1', () => {
    assert.ok(1, 'cannot define 1'); return 1;
  }),
  task('add n + 1', (n) => {
    assert.equal(n + 1, 2, 'cannot add n + 1');
    return n + 1;
  }),
  task('multiply n * 5', (n) => {
    assert.equal(n * 5, 10, 'cannot add n * 5');
    return n * 5;
  }),
]);
1.0.1

7 years ago

1.0.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago