From e937c74d7685e784b4f573c941e8fbb58270b3ff Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 13 Aug 2016 15:43:25 -0600 Subject: [PATCH] remove duplicate test --- tests/basic.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/basic.js b/tests/basic.js index cd93d70..b8cb869 100644 --- a/tests/basic.js +++ b/tests/basic.js @@ -50,17 +50,6 @@ var tests = [ }); } - // SANITY test that an unregistered email returns no results -, function () { - return leStore.accounts.checkAsync({ - email: doesntExist.email - }).then(function (account) { - if (null !== account) { - throw new Error("Should return `null` when account does not exist by `accountId`."); - } - }); - } -