From 9ef0459e71b127bdefb4ea348ed71671fde31cb4 Mon Sep 17 00:00:00 2001 From: Oscar Date: Wed, 31 Jan 2018 19:44:46 +0000 Subject: [PATCH] Revert bottomVisible() test --- test/bottomVisible/bottomVisible.test.js | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/test/bottomVisible/bottomVisible.test.js b/test/bottomVisible/bottomVisible.test.js index dc8119130..1c8eae4be 100644 --- a/test/bottomVisible/bottomVisible.test.js +++ b/test/bottomVisible/bottomVisible.test.js @@ -1,29 +1,12 @@ const test = require('tape'); -// const bottomVisible = require('./bottomVisible.js'); - -// Make the fake properties used by the function -const document = { - documentElement: { - clientHeight: 1080, - scrollHeight: 1080 - } -}; - -const window = { - scrollY: 2160 -} - -// Override the function to use these fake properties -const bottomVisible = () => -document.documentElement.clientHeight + window.scrollY >= -(document.documentElement.scrollHeight || document.documentElement.clientHeight); +const bottomVisible = require('./bottomVisible.js'); test('Testing bottomVisible', (t) => { //For more information on all the methods supported by tape //Please go to https://github.com/substack/tape t.true(typeof bottomVisible === 'function', 'bottomVisible is a Function'); //t.deepEqual(bottomVisible(args..), 'Expected'); - t.true(bottomVisible(), 'Produces the correct result'); + //t.equal(bottomVisible(args..), 'Expected'); //t.false(bottomVisible(args..), 'Expected'); //t.throws(bottomVisible(args..), 'Expected'); t.end();