Comparing version 5.0.4 to 5.0.5
12
index.js
@@ -57,4 +57,4 @@ import * as assert from './assert.js' | ||
isNode ? | ||
console.log(`≫ ${test.name}` + (test.tag ? ` | ${test.tag}` : '')) : | ||
console.log(`%c ${test.name} ≫`, 'color: #dadada') | ||
console.log(`≫ ${test.name}` + (test.tag ? ` (${test.tag})` : '')) : | ||
console.log(`%c${test.name} ≫` + (test.tag ? ` (${test.tag})` : ''), 'color: #dadada') | ||
}) | ||
@@ -65,4 +65,4 @@ } | ||
queue = queue.then(() => { | ||
isNode ? console.log(`≫ ${test.name}` + (test.tag ? ` | ${test.tag}` : '')) : | ||
console.log(`%c ${test.name} 🚧`, 'color: #dadada') | ||
isNode ? console.log(`≫ ${test.name}` + (test.tag ? ` (${test.tag})` : '')) : | ||
console.log(`%c${test.name} 🚧` + (test.tag ? ` (${test.tag})` : ''), 'color: #dadada') | ||
}) | ||
@@ -103,4 +103,4 @@ } | ||
isNode ? console.log(`▶ ${test.name}` + (test.tag ? ` | ${test.tag}` : '')) : | ||
console.group(test.index + '. ' + test.name + (test.tag ? ` | ${test.tag}` : '')) | ||
isNode ? console.log(`▶ ${test.name}` + (test.tag ? ` (${test.tag})` : '')) : | ||
console.group(test.name + (test.tag ? ` (${test.tag})` : '')) | ||
@@ -107,0 +107,0 @@ let result |
{ | ||
"name": "tst", | ||
"description": "Tape-compatible test runner", | ||
"version": "5.0.4", | ||
"version": "5.0.5", | ||
"repository": "dy/tst", | ||
@@ -6,0 +6,0 @@ "author": "Dmitry Yv", |
10719