From ba543a029512a26c17f6437f488c73e1d0a389dd Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Fri, 26 Apr 2019 07:29:34 +0200
Subject: [PATCH] tests: fix global cache test

---
 test/datasource/npm/index.spec.js | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/test/datasource/npm/index.spec.js b/test/datasource/npm/index.spec.js
index 6cc1d150fd..bd25f9e7bb 100644
--- a/test/datasource/npm/index.spec.js
+++ b/test/datasource/npm/index.spec.js
@@ -365,10 +365,12 @@ describe('api/npm', () => {
     expect(res1).toEqual(res2);
   });
   it('should use global cache', async () => {
-    const dummyValue = 'abc123';
-    await global.renovateCache.set('datasource-npm', 'foobar', dummyValue, 10);
+    const dep = {
+      name: 'abc123',
+    };
+    await global.renovateCache.set('datasource-npm', 'foobar', dep, 10);
     const res = await npm.getPkgReleases({ lookupName: 'foobar' });
-    expect(res).toEqual(dummyValue);
+    expect(res).toEqual(dep);
   });
   it('should fetch package info from custom registry', async () => {
     nock('https://npm.mycustomregistry.com')
-- 
GitLab