const ONE_SECOND = 1000; const BUILD_TIMEOUT = 10 * ONE_SECOND; // const DEPLOY_TIMEOUT = 2 * 60 * ONE_SECOND; describe('services', () => { // beforeAll(async () => { // }); test('are build', async () => { expect(true).toBe(true); }, BUILD_TIMEOUT); // test('are deployed', async () => { // await services.build(); // await services.start(); // }, DEPLOY_TIMEOUT); });