2.0.0 • Published 6 years ago

nomsjs v2.0.0

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

N.O.M.s

Universal/isomorphic javascript unit tests for witches.

Table of contents

How to install

Verify if you have node and npm installed.

Module

$ yarn add nomsjs -D

Usage

Create your test file

// demo.test.js

const { suite, test, assert } = require('nomsjs');

suite('All demo tests', () => {

  test('Should return a correct number', () => {
    return assert(22, 22); // Passed
  });

  test('Should return a correct number', () => {
    return assert(22, 23); // Failed
  });

});

Run your unit tests

$ node demo.test.js

Result:

Test Results

Docs

See all Docs and API reference here

Versioning

To keep better organization of releases we follow the Semantic Versioning 2.0.0 guidelines.

Contributing

Find on our issues the next steps of the project ;) Want to contribute? Follow these recommendations.

History

See Releases for detailed changelog.

License

MIT License © Afonso Pacifer

2.0.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago

0.1.0

6 years ago