-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: new test for sprigbnnbotot + parametrised
- Loading branch information
Showing
3 changed files
with
24 additions
and
171 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,15 @@ | ||
import * as path from 'path'; | ||
|
||
export const RESOURCES_DIR = path.resolve('.', 'src', 'ui-test', 'resources'); | ||
export const QUARKUS_DIR = path.join(RESOURCES_DIR, 'quarkus'); | ||
|
||
export const DEBUGGER_ATTACHED_MESSAGE = 'debugger has been attached'; | ||
|
||
export const SPRINGBOOT_DIR = path.join(RESOURCES_DIR, 'springboot'); | ||
export const SPRINGBOOT_CREATE_COMMAND = 'Camel: Create a Camel on SpringBoot project'; | ||
export const SPRINGBOOT_ATTACH_DEBUGGER = 'Run Camel Spring Boot application and attach Camel debugger'; | ||
export const SPRINGBOOT_PROJECT_FOLDER = path.join(SPRINGBOOT_DIR, 'src', 'main', 'java', 'com', 'acme', 'myproject'); | ||
|
||
export const DEBUGGER_ATTACHED_MESSAGE = 'debugger has been attached'; | ||
export const QUARKUS_DIR = path.join(RESOURCES_DIR, 'quarkus'); | ||
export const QUARKUS_CREATE_COMMAND = 'Camel: Create a Camel Quarkus project'; | ||
export const QUARKUS_ATTACH_DEBUGGER = 'Run Camel Quarkus JVM application and attach Camel debugger'; | ||
export const QUARKUS_PROJECT_FOLDER = path.join(QUARKUS_DIR, 'src', 'main', 'java', 'com', 'acme', 'myproject'); |