Skip to content

Commit

Permalink
Remove namespace in command prefix in Happy path tests
Browse files Browse the repository at this point in the history
Signed-off-by: Dmytro Nochevnov <[email protected]>
  • Loading branch information
dmytro-ndp authored and rhopp committed Oct 14, 2019
1 parent 12d696b commit eb66fee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions e2e/tests/e2e_happy_path/HappyPath.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ suite('Language server validation', async () => {

suite('Validation of workspace build and run', async () => {
test('Build application', async () => {
await runTask('che: build-file-output');
await runTask('build-file-output');

//workaround for issue: https://github.com/eclipse/che/issues/14771

Expand All @@ -157,7 +157,7 @@ suite('Validation of workspace build and run', async () => {
});

test('Run application', async () => {
await runTask('che: run');
await runTask('run');
await ide.waitNotificationAndConfirm('A new process is now listening on port 8080', 120000);
await ide.waitNotificationAndOpenLink('Redirect is now enabled on port 8080', 120000);
});
Expand Down Expand Up @@ -192,7 +192,7 @@ suite('Display source code changes in the running application', async () => {
});

test('Build application with changes', async () => {
await runTask('che: build');
await runTask('build');
await projectTree.expandPathAndOpenFileInAssociatedWorkspace(projectName, 'result-build.txt', 300000);
await editor.waitText('result-build.txt', '[INFO] BUILD SUCCESS');

Expand All @@ -208,7 +208,7 @@ suite('Display source code changes in the running application', async () => {
});

test('Run application with changes', async () => {
await runTask('che: run-with-changes');
await runTask('run-with-changes');
await ide.waitNotificationAndConfirm('A new process is now listening on port 8080', 120000);
await ide.waitNotificationAndOpenLink('Redirect is now enabled on port 8080', 120000);
});
Expand Down Expand Up @@ -237,7 +237,7 @@ suite('Validation of debug functionality', async () => {
});

test('Launch debug', async () => {
await runTask('che: run-debug');
await runTask('run-debug');
await ide.waitNotificationAndConfirm('A new process is now listening on port 8080', 180000);
await ide.waitNotificationAndOpenLink('Redirect is now enabled on port 8080', 180000);
});
Expand Down

0 comments on commit eb66fee

Please sign in to comment.