目次
サンプルコード
検査対象
export const getBar = () => {
return new Date().toDateString();
};
テストコード
import Foo from 'src/Foo';
const spiedGetBar = jest
.spyOn(Foo, 'getBar')
.mockReturnValue('Fri Mar 19 2021');
目次
export const getBar = () => {
return new Date().toDateString();
};
import Foo from 'src/Foo';
const spiedGetBar = jest
.spyOn(Foo, 'getBar')
.mockReturnValue('Fri Mar 19 2021');