Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ oc logs test-hello-pod
await projectAndFileTests.getProjectTreeItem(projectSection, 'Dockerfile.x86_64'),
'Dockerfile not found in the project tree'
).not.undefined;
await projectAndFileTests.performTrustDialogs();
});

test('Build and push container image from workspace', function (): void {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ suite(`Test image build with persistUserHome enabled (kubedock and podman) ${BAS
test('Check the project files were imported', async function (): Promise<void> {
const projectSection: ViewSection = await projectAndFileTests.getProjectViewSession();
expect(await projectAndFileTests.getProjectTreeItem(projectSection, 'Dockerfile.ppc64le'), 'Files not imported').not.undefined;
await projectAndFileTests.performTrustDialogs();
});

test('Create and check container runs using kubedock and podman with persistUserHome', function (): void {
Expand Down
1 change: 1 addition & 0 deletions tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ suite(
test('Check the project files were imported', async function (): Promise<void> {
const projectSection: ViewSection = await projectAndFileTests.getProjectViewSession();
expect(await projectAndFileTests.getProjectTreeItem(projectSection, 'Dockerfile.ppc64le'), 'Files not imported').not.undefined;
await projectAndFileTests.performTrustDialogs();
});

test('Create and check container runs using kubedock and podman', function (): void {
Expand Down
Loading