From fb1b5876d6802dc96cd795df45113186f6dd5c51 Mon Sep 17 00:00:00 2001 From: "Brian M. Carlson" Date: Tue, 12 May 2020 13:54:12 -0500 Subject: [PATCH] Meaningless commit to kick something off in travis --- packages/pg-cursor/test/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/pg-cursor/test/index.js b/packages/pg-cursor/test/index.js index 24d3cfd7..165bb3f6 100644 --- a/packages/pg-cursor/test/index.js +++ b/packages/pg-cursor/test/index.js @@ -89,7 +89,9 @@ describe('cursor', function () { const cursor = this.pgCursor(text, values) let count = 0 const read = function () { + let start = Date.now() cursor.read(100, function (err, rows) { + console.log('read in', Date.now() - start) if (err) return done(err) if (!rows.length) { assert.strictEqual(count, 100001)