UNPKG

hel-lodash

Version:

远程仓库模板库

14 lines (12 loc) 303 B
import { sayHelloToHel } from '../myMod'; /** * @priority P0 * @casetype unit */ describe('test myMod', () => { test('sayHelloToHel', () => { const tip = ''; // 此处改写为你的rtx名字 const ret = `hello hel, ${tip}`; expect(sayHelloToHel('bj') === ret).toBeTruthy(); }); });