Files
cloud-cap-samples/test/hello-world-ts.test.ts
Christian Georgi c04b972d27 Cosmetics
2021-07-13 13:01:50 +02:00

16 lines
467 B
TypeScript

process.env.CDS_TYPESCRIPT = 'true';
import * as cds from '@sap/cds';
//@ts-ignore
const {GET} = cds.test.in(__dirname,'../hello').run('serve', 'world.cds');
describe('Hello world!', () => {
afterAll(() => { delete process.env.CDS_TYPESCRIPT; });
it('should say hello with class impl from a typescript file', async () => {
const {data} = await GET`/say/hello(to='world')`
expect(data.value).toMatch(/Hello world.*typescript.*/i)
})
})