import { justStop, runServer } from '../main'; import { demoCalculation } from '../_aqua/demo-calculation'; describe('smoke test', () => { it('should work', async () => { await runServer(); const res = await demoCalculation(); await justStop(); expect(res).toBe(7); }, 15000); });