ava-fixture
Advanced tools
Comparing version
@@ -46,2 +46,3 @@ "use strict"; | ||
var others = { | ||
failing: curry(ava.failing), | ||
only: curry(ava.only), | ||
@@ -54,2 +55,6 @@ skip: curry(ava.skip), | ||
} | ||
fn.failing.only = others.only; | ||
fn.failing.skip = others.skip; | ||
fn.only.failing = others.failing; | ||
fn.skip.failing = others.failing; | ||
return fn; | ||
@@ -56,0 +61,0 @@ } |
{ | ||
"name": "ava-fixture", | ||
"description": "Write fixture tests with ava", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"main": "dist/commonjs/index.js", | ||
@@ -6,0 +6,0 @@ "typings": "dist/commonjs/index.d.ts", |
@@ -50,2 +50,7 @@ # ava-fixture | ||
}); | ||
// test title can be omitted | ||
ftest('case-1', (t) => { | ||
// ... | ||
}) | ||
``` | ||
@@ -72,2 +77,7 @@ | ||
}); | ||
// test title can be omitted | ||
btest('case-1', (t) => { | ||
// ... | ||
}) | ||
``` | ||
@@ -74,0 +84,0 @@ |
Sorry, the diff of this file is not supported yet
150
7.14%19408
-26.81%12
-20%109
-41.71%