Skip to content

Commit

Permalink
chore(package) v3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Dec 7, 2020
1 parent b26de87 commit 3fb3c98
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2020.12.07, v3.7.1

fix:
- (format) parseAt: no new lines


2020.12.07, v3.7.0

feature:
Expand Down
13 changes: 13 additions & 0 deletions lib/format.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict';

const test = require('./supertape');
const {parseAt} = require('./format');

test('supertape: format', (t) => {
const stack = `Error: ENOENT: no such file or directory, open '/abc'`;
const result = parseAt(stack, {reason: 'user'});

t.equal(result, stack);
t.end();
});

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "supertape",
"version": "3.7.0",
"version": "3.7.1",
"author": "coderaiser <[email protected]> (https://github.com/coderaiser)",
"description": "tape compatible test runner with superpowers",
"homepage": "http://github.com/coderaiser/supertape",
Expand Down

0 comments on commit 3fb3c98

Please sign in to comment.