From 3f2520bc83f785f3e251a5393762d7ede128d531 Mon Sep 17 00:00:00 2001 From: Muthu Kumar Date: Mon, 13 Aug 2018 23:20:54 +0530 Subject: [PATCH] [docs] Minor change --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 036354c..1ff1e87 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,16 @@ 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. ```JavaScript +// Create new instance const gunner = new Gunner(); +// Define tests gunner.test('arrays are equal', expect => { return expect([1, 2,]).deepEqual([1 ,2]); }); -gunner.run(); // starts the runner +// Starts the runner +gunner.run(); ``` ## Documentation @@ -41,4 +44,4 @@ gunner.run(); // starts the runner ## Credits -`Gunner` was built at [Klenty](https://klenty.com), a sales automation startup, by Muthu Kumar [(@MKRhere)](https://github.com/MKRhere). +`Gunner` was built by Muthu Kumar [(@MKRhere)](https://github.com/MKRhere) at [Klenty](https://klenty.com), a sales automation startup.