Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
328 views
in Technique[技术] by (71.8m points)

reactjs - can't read property of format undefined in jest test case in moment

Why, I don't know I import function in the test case and tested it it showing error can't read property format undefined.

const isSchedule = () => {
   const format = format => moment().tz('Australia/Perth').format(format);
   /// some extra code
   const nowDate = format('YYYY-MM-DD HH:mm:ss');
   /// some other code with newDate;
   return true // true or false as return value
}

while creating the newDate variable it raise error

my Test case

it('should scheduled when empty array passed', () => {
    const isSchedule = isScheduled([]);
    expect(isSchedule).toBe(true);
});
question from:https://stackoverflow.com/questions/66052052/cant-read-property-of-format-undefined-in-jest-test-case-in-moment

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...