Skip to content

Commit

Permalink
Drop-in replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Jan 9, 2023
1 parent a5d728c commit a64b03a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
15 changes: 13 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
]
}

0 comments on commit a64b03a

Please sign in to comment.