From ff3c79b51a345f4815bb45182d464e3e8b14f049 Mon Sep 17 00:00:00 2001 From: James Halliday Date: Tue, 4 Mar 2014 19:59:08 -0800 Subject: [PATCH] another only test, passes --- test/only3.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/only3.js diff --git a/test/only3.js b/test/only3.js new file mode 100644 index 00000000..b192a4e0 --- /dev/null +++ b/test/only3.js @@ -0,0 +1,15 @@ +var test = require('../'); + +test('only3 test 1', function (t) { + t.fail('not 1'); + t.end(); +}); + +test.only('only3 test 2', function (t) { + t.end(); +}); + +test('only3 test 3', function (t) { + t.fail('not 3'); + t.end(); +});