Slide 14
Slide 14 text
"1*(BUFXBZͷΠϯςάϨʔγϣϯςετྫ
IUUQTHJUIVCDPNIPSJLFTFSWFSMFTTBQJJOUFHSBUJPOUFTUTBNQMF
σϓϩΠ
আ
ςετ
beforeAll(() => {
Utils.deployService();
});
it('should return correct values from all apis', () => {
const testEndpoint = `${endpoint}/hello`;
return fetch(testEndpoint, { method: 'GET' })
.then(response => response.json())
.then((json) => expect(json.message).to.equal(‘Go function successfully!'));
});
afterAll(() => {
Utils.removeService();
});
});