supertape 12.0.8 → 12.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ChangeLog +5 -0
- package/README.md +2 -2
- package/lib/help.js +0 -1
- package/package.json +1 -1
package/ChangeLog
CHANGED
package/README.md
CHANGED
|
@@ -225,7 +225,7 @@ Generate a new test that will be skipped over.
|
|
|
225
225
|
Extend base assertions with more:
|
|
226
226
|
|
|
227
227
|
```js
|
|
228
|
-
|
|
228
|
+
import {extend} from 'supertape';
|
|
229
229
|
const test = extend({
|
|
230
230
|
transform: (operator) => (a, b, message = 'should transform') => {
|
|
231
231
|
const {is, output} = operator.equal(a + 1, b - 1);
|
|
@@ -246,7 +246,7 @@ test('assertion', (t) => {
|
|
|
246
246
|
## Example
|
|
247
247
|
|
|
248
248
|
```js
|
|
249
|
-
|
|
249
|
+
import {test} from 'supertape';
|
|
250
250
|
|
|
251
251
|
test('lib: arguments', async (t) => {
|
|
252
252
|
throw Error('hello');
|
package/lib/help.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supertape",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.9",
|
|
4
4
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
5
5
|
"description": "📼 Supertape simplest high speed test runner with superpowers",
|
|
6
6
|
"homepage": "http://github.com/coderaiser/supertape",
|