From d43fb44c2fb9994ba86389518950bcc49a5dcabd Mon Sep 17 00:00:00 2001 From: hufeng Date: Wed, 24 Aug 2022 11:33:52 +0800 Subject: [PATCH] Add issue number to function.toString's UT Issue: https://gitee.com/openharmony/arkcompiler_ets_frontend/issues/I5NUAW Signed-off-by: hufeng Change-Id: I47e03a00824af9d5fb2802682b8d0a7893df3ae0 --- ts2panda/tests/builtIns.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ts2panda/tests/builtIns.test.ts b/ts2panda/tests/builtIns.test.ts index ace7fc1c21..070e8d393d 100644 --- a/ts2panda/tests/builtIns.test.ts +++ b/ts2panda/tests/builtIns.test.ts @@ -40,6 +40,12 @@ describe("BuiltInsTest", function () { }); describe("FunctionToStringTest", function () { + /* + * @tc.name: FunctionToStringTest + * @tc.desc: verify func.toString() interface + * @tc.type: FUNC + * @tc.require: issueI5INW1 + */ it("func.toString()", function () { CmdOptions.needRecordSourceCode = () => {return true}; let snippetCompiler = new SnippetCompiler(); -- Gitee