Split sample app

- spring-shell-sample-commands and spring-shell-sample-e2e
- Needed changes in e2e tests and workflow
- Fixes #754
This commit is contained in:
Janne Valkealahti
2023-06-15 10:31:05 +01:00
parent 71ed64670f
commit c27b85fb0e
58 changed files with 257 additions and 31 deletions

View File

@@ -5,8 +5,8 @@ import {
nativeDesc,
jarDesc,
jarCommand,
nativeCommand,
jarOptions,
commandsNativeCommand,
commandsJarOptions,
waitForExpectDefaultTimeout,
waitForExpectDefaultInterval,
testTimeout
@@ -71,7 +71,7 @@ describe('flow commands', () => {
describe(jarDesc, () => {
beforeAll(() => {
command = jarCommand;
options = jarOptions;
options = commandsJarOptions;
});
it(
@@ -92,7 +92,7 @@ describe('flow commands', () => {
*/
describe(nativeDesc, () => {
beforeAll(() => {
command = nativeCommand;
command = commandsNativeCommand;
options = [];
});