From a64494f7e900680c08f1e4f6451a15debeb08853 Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Mon, 15 Mar 2021 16:51:12 +0000 Subject: Update integration UI tests selenium image The integration UI tests were using a very old selenium image "selenium/standalone-firefox:2.53.1" (from 4 years ago), which was bringing problems related with outdated version of firefox/selenium standalone. Fixes broken tests after the update. Updates also the gecko driver to the 0.29.0 version. Change-Id: I1f7ad17c649e4015cde5c1932f9da08e36ca0aec Issue-ID: SDC-3516 Signed-off-by: andre.schmid --- .../components/modals/onboarding-modal/onboarding-modal.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'catalog-ui/src/app/ng2/components') diff --git a/catalog-ui/src/app/ng2/components/modals/onboarding-modal/onboarding-modal.component.ts b/catalog-ui/src/app/ng2/components/modals/onboarding-modal/onboarding-modal.component.ts index 2e41716e0b..10d7f67860 100644 --- a/catalog-ui/src/app/ng2/components/modals/onboarding-modal/onboarding-modal.component.ts +++ b/catalog-ui/src/app/ng2/components/modals/onboarding-modal/onboarding-modal.component.ts @@ -135,7 +135,8 @@ export class OnboardingModalComponent implements OnInit { (file: any): void => { this.isLoading = false; if (file.body) { - this.fileUtilsService.downloadFile(file.body, packageId + '.csar'); + this.fileUtilsService.downloadFile(new Blob([file.body], + {type: 'application/octet-stream'}), packageId + '.csar'); } }, (): void => { this.isLoading = false; -- cgit 1.2.3-korg