Changed auth-status model: ssoLoginUrl: string

This commit is contained in:
Julius Gruber
2019-06-03 09:10:58 +02:00
parent f4f6c21abf
commit 78287f5504
1580 changed files with 51145 additions and 0 deletions

16
e2e/app.e2e-spec.js Normal file
View File

@@ -0,0 +1,16 @@
import { ProtractorPage } from './app.po';
describe('protractor App', function () {
var page;
beforeEach(function () {
page = new ProtractorPage();
});
it('should display translated title "DSpace Angular :: Home"', function () {
page.navigateTo();
expect(page.getPageTitleText()).toEqual('DSpace Angular :: Home');
});
it('should contain a news section', function () {
page.navigateTo();
expect(page.getHomePageNewsText()).toBeDefined();
});
});
//# sourceMappingURL=app.e2e-spec.js.map