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();
  });
});
