Make e2e tests work 19/5919/1
authorelinuxhenrik <henrik.b.andersson@est.tech>
Wed, 21 Apr 2021 14:07:31 +0000 (16:07 +0200)
committerelinuxhenrik <henrik.b.andersson@est.tech>
Wed, 21 Apr 2021 14:07:36 +0000 (16:07 +0200)
Change-Id: Ia8dae6e3be9d5979113aece05ddc0f21c749c142
Issue-ID: NONRTRIC-474
Signed-off-by: elinuxhenrik <henrik.b.andersson@est.tech>
webapp-frontend/e2e/src/app.e2e-spec.ts
webapp-frontend/e2e/src/app.po.ts [deleted file]
webapp-frontend/e2e/tsconfig.e2e.json
webapp-frontend/package.json

index e72cb6e..fb7e14f 100644 (file)
  * limitations under the License.
  * ========================LICENSE_END===================================
  */
-import { AppPage } from './app.po';
-import { browser, logging } from 'protractor';
+import { browser, by, element, logging } from "protractor";
 
-describe('workspace-project App', () => {
-  let page: AppPage;
+describe("workspace-project App", () => {
 
   beforeEach(() => {
-    page = new AppPage();
   });
 
-  it('should display welcome message', () => {
-    page.navigateTo();
-    expect(page.getTitleText()).toEqual('Welcome to controlpanelApp!');
+  it("should display title", () => {
+    browser.get("http://localhost:4200/");
+    expect(browser.getTitle()).toEqual("Non-RT RIC Control Panel");
   });
 
   afterEach(async () => {
     // Assert that there are no errors emitted from the browser
     const logs = await browser.manage().logs().get(logging.Type.BROWSER);
-    expect(logs).not.toContain(jasmine.objectContaining({
-      level: logging.Level.SEVERE,
-    }));
+    expect(logs).not.toContain(
+      jasmine.objectContaining({
+        level: logging.Level.SEVERE,
+      })
+    );
   });
 });
diff --git a/webapp-frontend/e2e/src/app.po.ts b/webapp-frontend/e2e/src/app.po.ts
deleted file mode 100644 (file)
index 7b1ccce..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/*-
- * ========================LICENSE_START=================================
- * O-RAN-SC
- * %%
- * Copyright (C) 2019 AT&T Intellectual Property
- * %%
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ========================LICENSE_END===================================
- */
-import { browser, by, element } from 'protractor';
-
-export class AppPage {
-  navigateTo() {
-    return browser.get('/') as Promise<any>;
-  }
-
-  getTitleText() {
-    return element(by.css('app-root h1')).getText() as Promise<string>;
-  }
-}
index a6dd622..557cc74 100644 (file)
@@ -3,7 +3,7 @@
   "compilerOptions": {
     "outDir": "../out-tsc/app",
     "module": "commonjs",
-    "target": "es5",
+    "target": "es2015",
     "types": [
       "jasmine",
       "jasminewd2",
index 16f2687..75f7ced 100644 (file)
@@ -8,7 +8,8 @@
     "build": "ng build",
     "test": "ng test --watch=true",
     "lint": "ng lint",
-    "e2e": "ng e2e"
+    "e2e": "ng e2e",
+    "webdriver-update": "webdriver-manager update"
   },
   "private": true,
   "dependencies": {