From 3caba0e5209359104e4ae386eb3092bf0a1361be Mon Sep 17 00:00:00 2001 From: Gar Date: Thu, 11 Apr 2024 14:06:46 -0700 Subject: [PATCH] chore: add test plan count for current methods --- test/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/index.js b/test/index.js index 949f519..7aa41d2 100644 --- a/test/index.js +++ b/test/index.js @@ -1,5 +1,7 @@ const t = require('tap') const procLog = require('../') +// This makes sure we are testing the two known exported methods. +t.plan(2) for (const method in procLog) { t.test(method, t => { const log = procLog[method]