Comment on Nightwatch.jsComments−briantakita12yI've created a similar project that uses jasmine and formats the test cases into general purpose flows.The motivation is to economically (both in test suite run time and development time) test the system's many edge cases, including race conditions.https://github.com/btakita/jasmine-flowIt's only dependency is jasmine. I use it with jsdom, so I can test all > 95% client's edge cases in a reasonable amount of time and confidence of the software working. This allows me to run the entire test suite before commits on mature projects.
Comments
I've created a similar project that uses jasmine and formats the test cases into general purpose flows.
The motivation is to economically (both in test suite run time and development time) test the system's many edge cases, including race conditions.
https://github.com/btakita/jasmine-flow
It's only dependency is jasmine. I use it with jsdom, so I can test all > 95% client's edge cases in a reasonable amount of time and confidence of the software working. This allows me to run the entire test suite before commits on mature projects.