diff --git a/frontend/src/app/model/Scenario.ts b/frontend/src/app/model/Scenario.ts
index 3d58d727e..ae5758f07 100644
--- a/frontend/src/app/model/Scenario.ts
+++ b/frontend/src/app/model/Scenario.ts
@@ -36,11 +36,6 @@ export interface Scenario {
*/
saved?: boolean;
- /**
- * If the daisy Auto Logout is active
- */
- daisyAutoLogout?: boolean;
-
/**
* Wait time between the steps
*/
diff --git a/frontend/src/app/parent/parent.component.spec.ts b/frontend/src/app/parent/parent.component.spec.ts
index cce2a045a..3d36cc9b2 100644
--- a/frontend/src/app/parent/parent.component.spec.ts
+++ b/frontend/src/app/parent/parent.component.spec.ts
@@ -15,7 +15,7 @@ const story:Story = {_id: 1, issue_number: 36523, story_id: 37727, storySource:
state: '', assignee: 'alice', assignee_avatar_url: 'url/to/my/photo', lastTestPassed: false};
const scenario: Scenario = {scenario_id: 3, name: 'my scenario', stepDefinitions: undefined,
- comment: 'i leave a few words here', lastTestPassed: false, saved: true, daisyAutoLogout: true,
+ comment: 'i leave a few words here', lastTestPassed: false, saved: true,
stepWaitTime: 40, browser: 'chrome'};
diff --git a/frontend/src/app/routes/routes.ts b/frontend/src/app/routes/routes.ts
index 07271ff85..cf910bbe1 100644
--- a/frontend/src/app/routes/routes.ts
+++ b/frontend/src/app/routes/routes.ts
@@ -2,7 +2,6 @@ import { LoginComponent } from '../login/login.component';
import {AccountManagementComponent} from '../account-management/account-management.component';
import { ParentComponent } from '../parent/parent.component';
import { AuthGuard } from '../guards/auth.guard';
-import { FeedbackComponent } from '../feedback/feedback.component';
import { TermsComponent } from '../terms/terms.component';
import { RegistrationComponent } from '../registration/registration.component';
import { ReportComponent } from '../report/report.component';
@@ -46,14 +45,6 @@ export const ROUTES = [
component: ReportComponent
},
- /**
- * Feedback
- */
- {
- path: 'feedback',
- component: FeedbackComponent
- },
-
/**
* Terms
*/
diff --git a/frontend/src/app/scenario-editor/scenario-editor.component.css b/frontend/src/app/scenario-editor/scenario-editor.component.css
index 3efd904d7..056921a9f 100644
--- a/frontend/src/app/scenario-editor/scenario-editor.component.css
+++ b/frontend/src/app/scenario-editor/scenario-editor.component.css
@@ -129,13 +129,4 @@ table {
:host ::ng-deep .comment > textarea {
width: 100%;
height: 50px;
-}
-
-:host ::ng-deep .daisyAutoLogout{
- column-width: 100px;
- float:right;
-}
-
-:host ::ng-deep #daisyAutoLogout{
- margin-left: 5px;
-}
+}
\ No newline at end of file
diff --git a/frontend/src/app/scenario-editor/scenario-editor.component.html b/frontend/src/app/scenario-editor/scenario-editor.component.html
index 68a3035b1..c956cc467 100644
--- a/frontend/src/app/scenario-editor/scenario-editor.component.html
+++ b/frontend/src/app/scenario-editor/scenario-editor.component.html
@@ -3,7 +3,7 @@
- Scenario
+ Scenario Each scenario is an example describing a specific behavioral aspect of the system.
It makes statements about how the system behaves when a particular action is executed taking into account certain preconditions.
@@ -63,10 +63,6 @@
-
diff --git a/frontend/src/app/scenario-editor/scenario-editor.component.spec.ts b/frontend/src/app/scenario-editor/scenario-editor.component.spec.ts
index 0db796ba2..4b80a0f77 100644
--- a/frontend/src/app/scenario-editor/scenario-editor.component.spec.ts
+++ b/frontend/src/app/scenario-editor/scenario-editor.component.spec.ts
@@ -12,7 +12,7 @@ import { NO_ERRORS_SCHEMA } from '@angular/core';
const scenarios:Scenario[] = [{scenario_id: 2, name: 'my first scenario', stepDefinitions: {"when":[{"_id":'5dce728851e70f2894a170b4',"id": 6, "stepType":"when", "type" :"HoverOverAndSelect", "pre":"I hover over the element", "mid":"and select the option","values":["",""], "post":"", "isExample":[]}], "given":[{"_id":'5dce728851e70f2894a170b4',"id": 6, "stepType":"when", "type" :"HoverOverAndSelect", "pre":"I hover over the element", "mid":"and select the option","values":["",""], "post":"", "isExample":[]}],"then":[], "example": []},
comment: 'write some words about this scenario', lastTestPassed: false,
- saved: true, daisyAutoLogout: true, stepWaitTime: 200, browser: 'chrome'}]
+ saved: true, stepWaitTime: 200, browser: 'chrome'}]
describe('ScenarioEditorComponent', () => {
diff --git a/frontend/src/app/scenario-editor/scenario-editor.component.ts b/frontend/src/app/scenario-editor/scenario-editor.component.ts
index 6b9296163..14c500581 100644
--- a/frontend/src/app/scenario-editor/scenario-editor.component.ts
+++ b/frontend/src/app/scenario-editor/scenario-editor.component.ts
@@ -35,13 +35,7 @@ export class ScenarioEditorComponent implements OnInit{
public blockService: BlockService,
public scenarioService: ScenarioService,
public toastr: ToastrService
- ) {
- if (localStorage.getItem('version') == 'DAISY') {
- this.showDaisyAutoLogout = true;
- } else {
- this.showDaisyAutoLogout = false;
- }
- }
+ ) {}
/**
* Sets a new selected story
@@ -84,12 +78,6 @@ export class ScenarioEditorComponent implements OnInit{
*/
arrowRight = true;
-
- /**
- * If this is the daisy version and the auto logout should be shown
- */
- showDaisyAutoLogout = false;
-
/**
* Current step of scenario as ngModel for dropdown
*/
@@ -160,10 +148,7 @@ export class ScenarioEditorComponent implements OnInit{
@Output()
runTestScenarioEvent: EventEmitter = new EventEmitter();
- @Output()
- diasyLoginChanged: EventEmitter = new EventEmitter();
-
- /**
+ /**
* Subscribes to all necessary events
*/
ngOnInit() {
@@ -441,16 +426,6 @@ export class ScenarioEditorComponent implements OnInit{
}
}
- /**
- * Sets the daisy auto logout
- * @param $event
- * @param checkValue
- */
- setDaisyAutoLogout(checkValue: boolean) {
- this.selectedScenario.daisyAutoLogout = checkValue;
- this.selectedScenario.saved = false;
- }
-
/**
* Change the comment
* @param newComment
diff --git a/frontend/src/app/stories-bar/stories-bar.component.html b/frontend/src/app/stories-bar/stories-bar.component.html
index 862d99f3b..0bc9a4662 100644
--- a/frontend/src/app/stories-bar/stories-bar.component.html
+++ b/frontend/src/app/stories-bar/stories-bar.component.html
@@ -69,8 +69,8 @@
-
-
+
+
drag_handle
@@ -134,10 +134,10 @@
-
\ No newline at end of file
diff --git a/frontend/src/assets/seed-test-logo_transparent.png b/frontend/src/assets/seed-test-logo_transparent.png
new file mode 100644
index 000000000..f1d6d134d
Binary files /dev/null and b/frontend/src/assets/seed-test-logo_transparent.png differ
diff --git a/frontend/src/assets/xray-icon.png b/frontend/src/assets/xray-icon.png
new file mode 100644
index 000000000..f939a5512
Binary files /dev/null and b/frontend/src/assets/xray-icon.png differ
diff --git a/frontend/src/assets/xray.webp b/frontend/src/assets/xray.webp
new file mode 100644
index 000000000..ddd1faf0f
Binary files /dev/null and b/frontend/src/assets/xray.webp differ