From 5db7c8cdfb7cd9770d14379b67fea92d64ab3dde Mon Sep 17 00:00:00 2001 From: Klemens David Morgenstern Date: Wed, 20 Feb 2019 19:06:22 +0800 Subject: [PATCH] broke ava --- tests/ava.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/ava.js b/tests/ava.js index b90899e..945989c 100644 --- a/tests/ava.js +++ b/tests/ava.js @@ -5,19 +5,19 @@ test('foo will run', t => { }); test('foo will also run, yet fail', t => { - t.pass("Does that need message?"); + t.fail("Does that need message?"); }); test('foo will run but not exclusively', t => { - t.pass("Babumm"); + t.fail("Babumm"); }); // Won't run, no title -test('some name', function (t) { +test(function (t) { t.pass(); }); // Won't run, no explicit title -test('title', function foo(t) { +test(function foo(t) { t.pass(); }); \ No newline at end of file