Skip to content

Commit

Permalink
Merge dfa5f3a into 9aa2f50
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed Jan 15, 2019
2 parents 9aa2f50 + dfa5f3a commit 8fd544b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
@@ -1,10 +1,11 @@
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
- "10"
- "11"

# Use faster Docker architecture on Travis.
sudo: false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -9,7 +9,7 @@
"ms": "^2.1.1",
"promise": "^8.0.1",
"test-result": "^2.0.0",
"wtfnode": "^0.7.0"
"wtfnode": "^0.8.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
Expand Down
14 changes: 7 additions & 7 deletions test/index.js
Expand Up @@ -111,7 +111,7 @@ test('synchronous', function () {
assert.deepEqual(logs(), [
' ✗ fails tests that fail (0ms)',
'',
' ' + assertErrorString + ': false == true',
' ' + assertErrorString + ': The expression evaluated to a falsy value:',
'',
'Total duration 0ms',
'<fail>'
Expand All @@ -136,7 +136,7 @@ test('synchronous', function () {
' • fails tests that fail',
' ✗ even when they are nested (0ms)',
'',
' ' + assertErrorString + ': false == true',
' ' + assertErrorString + ': The expression evaluated to a falsy value:',
'',
'Total duration 0ms',
'<fail>'
Expand Down Expand Up @@ -207,7 +207,7 @@ test('asynchronous', function () {
assert.deepEqual(logs(), [
' ✗ fails tests that fail (0ms)',
'',
' ' + assertErrorString + ': false == true',
' ' + assertErrorString + ': The expression evaluated to a falsy value:',
'',
'Total duration 0ms',
'<fail>'
Expand All @@ -234,7 +234,7 @@ test('asynchronous', function () {
' • fails tests that fail',
' ✗ even when they are nested (0ms)',
'',
' ' + assertErrorString + ': false == true',
' ' + assertErrorString + ': The expression evaluated to a falsy value:',
'',
'Total duration 0ms',
'<fail>'
Expand Down Expand Up @@ -325,7 +325,7 @@ test('asynchronous', function () {
assert.deepEqual(logs(), [
' ✗ fails tests that fail (0ms)',
'',
' ' + assertErrorString + ': false == true',
' ' + assertErrorString + ': The expression evaluated to a falsy value:',
'',
'Total duration 0ms',
'<fail>'
Expand All @@ -352,7 +352,7 @@ test('asynchronous', function () {
' • fails tests that fail',
' ✗ even when they are nested (0ms)',
'',
' ' + assertErrorString + ': false == true',
' ' + assertErrorString + ': The expression evaluated to a falsy value:',
'',
'Total duration 0ms',
'<fail>'
Expand Down Expand Up @@ -419,7 +419,7 @@ test('run', function () {
assert.deepEqual(logs(), [
' ✗ run (0ms)',
'',
' ' + assertErrorString + ': false == true',
' ' + assertErrorString + ': The expression evaluated to a falsy value:',
'',
'Total duration 0ms',
'<fail>'
Expand Down

0 comments on commit 8fd544b

Please sign in to comment.