github.com/ouraigua/jenkins-library@v0.0.0-20231028010029-fbeaf2f3aa9b/integration/testdata/TestMtaIntegration/npm/test/unit-tests/helloworld.spec.js (about)

     1  const hello = require('../../srv/hello.js')
     2  
     3  describe("hello world route", () => {
     4    it("responds with \"Hello, World!\"", () => {
     5  
     6      hello.sum(1,2)
     7      hello.multiply(1,1)
     8    });
     9  });