Simple javascript test runner
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
BraydonKains ab01ce3b44 First draft with cli that runs all *.test.js files 3 years ago
examples First draft with cli that runs all *.test.js files 3 years ago
src First draft with cli that runs all *.test.js files 3 years ago
.eslintignore First draft with cli that runs all *.test.js files 3 years ago
.eslintrc.cjs First draft with cli that runs all *.test.js files 3 years ago
.gitignore Scratch code for running a test file or a test suite 4 years ago
LICENSE Initial commit 4 years ago
README.md Scratch code for running a test file or a test suite 4 years ago
cli.js First draft with cli that runs all *.test.js files 3 years ago
index.js First draft with cli that runs all *.test.js files 3 years ago
package-lock.json First draft with cli that runs all *.test.js files 3 years ago
package.json First draft with cli that runs all *.test.js files 3 years ago

README.md

js-test

js-test will be a minimal JavaScript test runner. It will be able to run tests from the CLI or programatically. The aim of this library is to enable JavaScript developers to write test code in very plain JavaScript without needing to learn a whole testing framework. The test code written to be run by this package will look largely like plain JavaScript. The aim will be to enforce very little opinions on the developer.

This project is still under development. I am still making some fundamental architecture decisions. The code in this repo will mostly be my scratch attempts at coming up with something usable.