hel-tpl-remote-lib
Version:
基于[hel-micro](https://github.com/tnfe/hel)搭建的远程仓库模板库
15 lines (13 loc) • 362 B
text/typescript
import { sayHelloToHel } from '../myMod';
/**
* @author fancyzhong
* @priority P0
* @casetype unit
*/
describe('test myMod', () => {
test('sayHelloToHel', () => {
const yourRtxName = ''; // 此处改写为你的rtx名字
const ret = `hello hel, I am ${yourRtxName}, I come from bj`;
expect(sayHelloToHel('bj') === ret).toBeTruthy();
});
});