From d94adcc3bc7493c0088f43a8a3c1cce5b2e48c9b Mon Sep 17 00:00:00 2001 From: Dennis Subachev Date: Wed, 13 Feb 2019 10:34:03 -0800 Subject: [PATCH] Remove '.only' from unit test --- test/unit/Cache/removeExpired.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/Cache/removeExpired.test.js b/test/unit/Cache/removeExpired.test.js index aad814e..31583b4 100644 --- a/test/unit/Cache/removeExpired.test.js +++ b/test/unit/Cache/removeExpired.test.js @@ -34,7 +34,7 @@ describe('Cache#removeExpired', function () { }, 1000) }) - it.only('should return expired items with non-null values when the storageMode is "localStorage"', function (done) { + it('should return expired items with non-null values when the storageMode is "localStorage"', function (done) { const cache = new Cache(this.testId, { deleteOnExpire: 'none', storageMode: 'localStorage',