Jestでモジュールの関数をモックする

サンプルコード

検査対象

export const getBar = () => {
  return new Date().toDateString();
};

テストコード

import Foo from 'src/Foo';

const spiedGetBar = jest
  .spyOn(Foo, 'getBar')
  .mockReturnValue('Fri Mar 19 2021');