2023-06-11から1日間の記事一覧

TypeScript + Jest で、type文やinterface宣言による型からモックオブジェクトを作ってみた

関数 sumItem があり、2つの引数の型 Item があるとします。 export const sumItem = (a: Item, b: Item) => a.unitPrice + b.unitPrice Itemの型は export type Item = { name: string, description: string, contents: string, unitPrice: number, note: s…