Explorar o código

spyOn with populate

itizawa %!s(int64=5) %!d(string=hai) anos
pai
achega
21f653765c
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/test/models/shareLink.test.js

+ 1 - 1
src/test/models/shareLink.test.js

@@ -36,7 +36,7 @@ describe('ShareLink', () => {
 
     test('share link is not found', () => {
 
-      jest.spyOn(ShareLink, 'findOne').mockReturnValue({ expiredAt: '2020-05-29T14:44:28.064Z' });
+      jest.spyOn(ShareLink, 'findOne').mockImplementation(() => { return { populate: () => { return { expiredAt: '2020-05-29T14:44:28.064Z' } } } });
 
       Page.showSharedPage(req, res);