开箱即用:开箱即用的实用程序用于创建同一测试的变体 源码
开玩笑 实用程序,用于创建同一测试的变体 例 import { add , subtract } from './math' ; import cases from 'jest-in-case' ; cases ( 'add(augend, addend)' , opts => { expect ( add ( opts . augend , opts . addend ) ) . toBe ( opts . total ) ; } , [ { name : '1 + 1 = 2' , augend : 1 , addend : 1 , total : 2 } , { name :
用户评论