nomics-platform
Advanced tools
Comparing version 0.10.0 to 0.10.1
@@ -20,3 +20,3 @@ const teenytest = require('teenytest') | ||
process.env.NOMICS_PLATFORM_URL_ROOT = u | ||
teenytest('test/*.js', { plugins: ['teenytest-promise'] }, (err, passing) => { | ||
teenytest('test/*.js', { plugins: ['teenytest-promise'], asyncTimeout: 30000 }, (err, passing) => { | ||
if (err || !passing) { | ||
@@ -23,0 +23,0 @@ reject(new Error('Audit Failed')) |
@@ -118,4 +118,4 @@ const au = require('../au') | ||
au.assert( | ||
!second.find((t) => t.id === trades[0].id), | ||
`Trades with since=${trades[0].id} contained a trade with the same id as the since parameter. Only trades *after* the since id should be returned` | ||
!second.find((t) => t.timestamp < trades[0].timestamp), | ||
`Trades with since=${trades[0].id} contained a trade with a timestamp before the since parameter. Only trades *after or equal to* the since id should be returned` | ||
) | ||
@@ -122,0 +122,0 @@ au.assert( |
{ | ||
"name": "nomics-platform", | ||
"version": "0.10.0", | ||
"version": "0.10.1", | ||
"description": "Nomics Platform Toolkit", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
14847