Skip to content

Commit

Permalink
added logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Aug 21, 2023
1 parent 3319e5f commit 6fcf045
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@ describe('smoke', () => {
test('it can start Kibana and ES serverless', async () => {
async function doIt() {
await serverlessES.start();
console.log('ES STARTED');
await serverlessKibana.preboot();
console.log('KIBANA PREBOOTED');
await serverlessKibana.setup();
console.log('KIBANA SETUP');
await serverlessKibana.start();
console.log('KIBANA STARTED');
}
await expect(doIt()).resolves.toBe(undefined);
const { body } = await request.get(serverlessKibana, '/api/status').expect(200);
Expand Down

0 comments on commit 6fcf045

Please sign in to comment.