From ba14d3f7cfa5ded2fdbe1ac855d187e6102e6669 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Wed, 29 Apr 2020 14:26:57 +0200 Subject: [PATCH] test: add cache test --- lib/util/cache.spec.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/util/cache.spec.ts diff --git a/lib/util/cache.spec.ts b/lib/util/cache.spec.ts new file mode 100644 index 0000000000..14413bad8b --- /dev/null +++ b/lib/util/cache.spec.ts @@ -0,0 +1,7 @@ +import { getRepoCache } from './cache'; + +describe('getRepoCache', () => { + it('returns the global cache', () => { + expect(getRepoCache()).toBeDefined(); + }); +}); -- GitLab