You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Muthu Kumar
103b1e5a22
|
6 years ago | |
---|---|---|
.vscode | 6 years ago | |
assets | 6 years ago | |
sample | 6 years ago | |
src | 6 years ago | |
.eslintignore | 6 years ago | |
.eslintrc.js | 6 years ago | |
.gitignore | 6 years ago | |
DOCUMENTATION.md | 6 years ago | |
README.md | 6 years ago | |
Runner.js | 6 years ago | |
Strategy.js | 6 years ago | |
index.js | 6 years ago | |
package.json | 6 years ago | |
shrinkwrap.yaml | 6 years ago |
README.md
Gunner
Tiny, but fully loaded.
Gunner is a zero magic, fast test-runner and assertion framework. There are no magic globals or CLI specific interface.
Requirements & Usage
Gunner
uses very modern JavaScript, and hence requires node 10+ ❗️⚠️ currently.
Create a new Gunner
instance and simply write your tests. The assertion methods are passed in as the callback as an expect
object to the test function.
// Create new instance
const gunner = new Gunner();
// Define tests
gunner.test('arrays are equal', expect => {
return expect([1, 2,]).deepEqual([1 ,2]);
});
// Starts the runner
gunner.run();
Documentation
-
Class
: -
Methods
: -
Constants
:-
[Gunner.Start]
-
[Gunner.End]
-
-
State and Advanced Usage
Credits
Gunner
was built by Muthu Kumar (@MKRhere) at Klenty, a sales automation startup.