Skip to content

Commit bf86986

Browse files
committed
c10
Signed-off-by: Mahmoud Shahrokni <seyedmahmoud.shahrokni@amadeus.com>
1 parent 2ba7e2f commit bf86986

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ jobs:
106106
working-directory: e2e
107107
- name: run e2e tests
108108
run: npm run test:ci --prefix e2e -- src/tests
109+
- name: verify provisioning logs
110+
run: docker logs perses | grep -i "provisioning"
109111

110112

111113
type-check:
File renamed without changes.

e2e/src/tests/table/table.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ import { test, expect } from '@playwright/test';
1616
/* WAS ONLY ADDED FOR DEMONSTRATIONS*/
1717
test.describe('table Plugin', () => {
1818
test('ONLY FOR PR DEMONSTRATION', async ({ page }) => {
19-
await page.goto('http://localhost:8080/projects/e2eproject');
19+
const x = await page.goto('http://localhost:8080/projects/e2eproject', { waitUntil: 'domcontentloaded' });
20+
console.log(x);
2021
const renameText = page.getByText('RENAME PROJECT', { exact: false });
2122
await expect(renameText).toBeVisible();
2223
});

0 commit comments

Comments
 (0)