-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integration DevWorkspace generator tool; acceptance test suite for ec…
…lipse-che/che-devfile-registry repo Signed-off-by: mdolhalo <mdolhalo@redhat.com>
- Loading branch information
mdolhalo
committed
May 18, 2023
1 parent
6ff555f
commit 0843e08
Showing
15 changed files
with
1,257 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/********************************************************************* | ||
* Copyright (c) 2023 Red Hat, Inc. | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
**********************************************************************/ | ||
import { TestConstants } from './TestConstants'; | ||
import { ShellExecutor } from '../utils/ShellExecutor'; | ||
|
||
function getFullDevfileRegistryUrl(): string { | ||
return `${TestConstants.TS_SELENIUM_BASE_URL}/devfile-registry/devfiles/`; | ||
} | ||
|
||
export const devfileRegistry: object = JSON.parse( | ||
(new ShellExecutor).curl(getFullDevfileRegistryUrl()).stdout | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.