Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/ava.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});