mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 14:03:06 +00:00
Protractor configuration
This commit is contained in:
@@ -7,8 +7,13 @@ describe('protractor App', function() {
|
||||
page = new ProtractorPage();
|
||||
});
|
||||
|
||||
it('should display message saying app works', () => {
|
||||
it('should display title "DSpace"', () => {
|
||||
page.navigateTo();
|
||||
expect(page.getParagraphText()).toEqual('app works!');
|
||||
expect(page.getPageTitleText()).toEqual('DSpace');
|
||||
});
|
||||
|
||||
it('should display title "Hello, World!"', () => {
|
||||
page.navigateTo();
|
||||
expect(page.getFirstPText()).toEqual('Hello, World!');
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user