New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ava-fixture

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ava-fixture - npm Package Compare versions

Comparing version

to
0.6.0

5

dist/commonjs/fixture.js

@@ -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 @@ }

2

package.json
{
"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