Comparing version 3.3.0 to 3.4.0
@@ -80,9 +80,4 @@ import fastDeepEqual from 'fast-deep-equal' | ||
notOk as nok, | ||
equal as eq, | ||
equal as is, | ||
notEqual as neq, | ||
notEqual as isnt, | ||
notEqual as isNot, | ||
deepEqual as deq, | ||
deepEqual as is, | ||
throws as err | ||
} |
@@ -58,3 +58,5 @@ let assert = require('./assert.js') | ||
current.assertion.push({ idx: assertIndex, msg }) | ||
console.log(`${ isNode ? '' : '%c'}✔ ${assertIndex} — ${msg}`, 'color: #229944') | ||
isNode ? | ||
console.log(`✔ ${ assertIndex } — ${ msg }`) : | ||
console.log(`%c✔ ${assertIndex} — ${msg}`, 'color: #229944') | ||
passed += 1 | ||
@@ -95,3 +97,5 @@ } else { | ||
if (test.skip) { | ||
console.log(`${isNode ? '' : '%c'}# skip ${test.name}`, 'color: #ddd') | ||
isNode ? | ||
console.log(`# skip ${test.name}`) : | ||
console.log(`%c# skip ${test.name}`, 'color: #ddd') | ||
skipped += 1 | ||
@@ -98,0 +102,0 @@ return dequeue() |
{ | ||
"name": "tst", | ||
"description": "Testing tool", | ||
"version": "3.3.0", | ||
"version": "3.4.0", | ||
"repository": "dy/tst", | ||
@@ -6,0 +6,0 @@ "author": "Dmitry Yv", |
8633
212