diff --git a/README.md b/README.md index e04e8a4..5343439 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # workflow_test -test workflow of the js file +test workflow using ci/cd of the js file diff --git a/test.js b/test.js index 5ead2e7..c5c2d3f 100644 --- a/test.js +++ b/test.js @@ -2,4 +2,4 @@ const t=require('./SUM'); const lp=require('./wrk') test("is sucessfully:",()=>{ expect(t("jenfier","law")).toBe("jenfierlaw")}) test("is sucessfully:",()=>{ expect(lp()).toBe("")}) -test("is sucessfully:",()=>{ expect(t("dhar","shni")).toBe("dharshni")}) \ No newline at end of file +test("is sucessfully:",()=>{ expect(t("dhar","shni")).toBe("dharshni")}) diff --git a/wrk.js b/wrk.js index 71fe856..d43e0c7 100644 --- a/wrk.js +++ b/wrk.js @@ -1,7 +1,7 @@ -const h =()=>{ +const p =()=>{ return ""; } - module.exports=h; + module.exports=p; ;