diff --git a/README.md b/README.md index 42ea5fc..d646b5f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # micro-should -Ultra-simple testing framework without dependencies. Supports async cases. Works with any assertion library. +Simplest zero-dependency testing framework, a drop-in replacement for Mocha. + +Supports async cases. Works with any assertion library. * `should(title, case)` (or `it(title, case)`) syntax * `should.only(title, case)` allows to limit tests to only one case diff --git a/package.json b/package.json index 48e0379..20dab29 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "micro-should", "version": "0.2.1", - "description": "Ultra-simple testing framework without dependencies. Supports async cases.", + "description": "Simplest zero-dependency testing framework, a drop-in replacement for Mocha", "main": "index.js", "files": [ "index.js", @@ -16,5 +16,16 @@ "url": "https://github.com/paulmillr/micro-should.git" }, "author": "Paul Miller (https://paulmillr.com)", - "license": "MIT" + "license": "MIT", + "keywords": [ + "test", + "framework", + "testing", + "mocha", + "jest", + "it", + "should", + "jasmine", + "karma" + ] }