Java 16013 Add suffix legacy to spring-cloud-bootstrap module (#13218)

* JAVA-16013 Add suffix legacy spring-cloud-bootstrap to module

* JAVA-16013 Revert local change done to run test
This commit is contained in:
anuragkumawat
2023-01-02 23:40:25 +05:30
committed by GitHub
parent 1c8006a1df
commit 4c153707aa
160 changed files with 3 additions and 3 deletions
@@ -1,14 +0,0 @@
import {UiPage} from "./app.po";
describe('ui App', () => {
let page: UiPage;
beforeEach(() => {
page = new UiPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
});
});
@@ -1,11 +0,0 @@
import {browser, element, by} from "protractor";
export class UiPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.css('app-root h1')).getText();
}
}
@@ -1,12 +0,0 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"module": "commonjs",
"target": "es5",
"types":[
"jasmine",
"node"
]
}
}