From 3036ed53074e8c96c0c5bd43aecd22c7c0f1cd20 Mon Sep 17 00:00:00 2001 From: Arnout Kazemier Date: Wed, 25 Mar 2015 12:55:42 +0100 Subject: [PATCH] [test] ignore example function --- test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test.js b/test.js index 9a8cb3d..ffba4e0 100644 --- a/test.js +++ b/test.js @@ -19,6 +19,7 @@ describe('extendible', function () { }); it('can override properties and methods', function () { + /* istanbul ignore next */ Foo.prototype.bar = function () { return true; }; Foo.prototype.prop = 10;