Comparing version 0.1.3 to 0.1.4
# Versions | ||
## 0.1.3 | ||
## 0.1.4 | ||
@@ -5,0 +5,0 @@ - `featureFlagDetails`: Add support for anchor channels and anchor zero fee transactions |
@@ -8,3 +8,3 @@ { | ||
"devDependencies": { | ||
"tap": "14.11.0" | ||
"tap": "15.0.1" | ||
}, | ||
@@ -30,3 +30,3 @@ "engines": { | ||
}, | ||
"version": "0.1.3" | ||
"version": "0.1.4" | ||
} |
@@ -24,3 +24,3 @@ const {test} = require('tap'); | ||
tests.forEach(({args, description, error, expected}) => { | ||
return test(description, ({deepIs, end, throws}) => { | ||
return test(description, ({end, strictSame, throws}) => { | ||
if (!!error) { | ||
@@ -31,3 +31,3 @@ throws(() => featureFlagsAsWords(args), new Error(error), 'Got error'); | ||
deepIs(res.words, expected.words, 'Got expected words encoding'); | ||
strictSame(res.words, expected.words, 'Got expected words encoding'); | ||
} | ||
@@ -34,0 +34,0 @@ |
@@ -25,3 +25,3 @@ const {test} = require('tap'); | ||
tests.forEach(({args, description, error, expected}) => { | ||
return test(description, ({deepIs, end, throws}) => { | ||
return test(description, ({end, strictSame, throws}) => { | ||
if (!!error) { | ||
@@ -32,3 +32,3 @@ throws(() => featureFlagsFromHex(args), new Error(error), 'Got error'); | ||
deepIs(res.features, expected.features, 'Got expected feature flags'); | ||
strictSame(res.features, expected.features, 'Got expected feature flags'); | ||
} | ||
@@ -35,0 +35,0 @@ |
@@ -19,3 +19,3 @@ const {test} = require('tap'); | ||
tests.forEach(({args, description, error, expected}) => { | ||
return test(description, ({deepIs, end, throws}) => { | ||
return test(description, ({end, strictSame, throws}) => { | ||
if (!!error) { | ||
@@ -26,3 +26,3 @@ throws(() => featureFlagsFromWords(args), new Error(error), 'Got error'); | ||
deepIs(res.features, expected.features, 'Got expected feature bits'); | ||
strictSame(res.features, expected.features, 'Got expected feature bits'); | ||
} | ||
@@ -29,0 +29,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15876