Pavel Murygin 04935e0710 plzz work!
2022-02-21 18:41:19 +03:00

13 lines
288 B
TypeScript

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