ready-test

1.1.1 • Public • Published

ReadyTest

Because JS unit testing shouldn't be complicated.

Install

npm install ready-test

Browser

To get up and running in the browser, link the included CSS/JS:

<html>
  <head>
    <link rel="stylesheet" href="node_modules/ready-test/ready-test.css">
  </head>
  <body>
    <script src="node_modules/ready-test/ready-test.js"></script>
  </body>
</html>

Then link your source files and tests:

<html>
  <head>
    <link rel="stylesheet" href="node_modules/ready-test/ready-test.css">
  </head>
  <body>
    <script src="node_modules/ready-test/ready-test.js"></script>
    <script src="src/user.js"></script>
    <script src="test/userTest.js"></script>
  </body>
</html>

Node

To run in node, simply run the shell command provided:

./node_modules/ready-test/bin/readytest

It will find and run any tests like test/userTest.js, test/tests/user.js, etc. You can also add it to your package.json file to run with npm test:

{
  "scripts": {
    "test": "readytest"
  }
}

Docs

http://andrewplummer.github.io/ready-test/

Readme

Keywords

Package Sidebar

Install

npm i ready-test

Weekly Downloads

28

Version

1.1.1

License

MIT

Unpacked Size

95.9 kB

Total Files

9

Last publish

Collaborators

  • l_andrew_l