Skip to content

hydrojs/bdd

Repository files navigation

NPM version Build Status Coverage Status

hydro-bdd

Synopsis

BDD interface for hydro

describe('hydro-bdd', function() {
  context('working', function() {
    when('works for real', function() {
      it('really works', function() {

      });
    });
  });
});

Usage

hydro.set({
  plugins: ['hydro-bdd'],
});

Installation

npm:

npm install hydro-bdd

component:

component install hydrojs/hydro-bdd

standalone:

<script src="hydro-bdd"></script>

Tests

$ npm test

Coverage:

$ npm run coverage

License

The MIT License (see LICENSE)