@@ -4,26 +4,20 @@ let context = { pageName: 'Get Started' };
44let breadcrumbBase = require ( './breadcrumbs-base' ) ;
55
66describe ( 'Getting Started Page' , function ( ) {
7- let devstudioButton , closeButton , quickstartLink , installAlert ;
7+ let closeButton , installAlert ;
88
99 beforeAll ( function ( ) {
1010 browser . setLocation ( 'start' )
1111 . then ( function ( ) {
12- // devstudioButton = element(By.id('start-submit'));
13- // closeButton = element(By.id('exit-btn'));
12+ closeButton = element ( By . id ( 'exit-btn' ) ) ;
1413 installAlert = element ( By . id ( 'install-alert' ) ) ;
1514 } ) ;
1615 } ) ;
1716
18- // it('should display a button to start devstudio', function() {
19- // expect(devstudioButton.isDisplayed()).toBe(true);
20- // expect(devstudioButton.isEnabled()).toBe(true);
21- // });
22-
23- // it('should display a button to close the installer', function() {
24- // expect(closeButton.isDisplayed()).toBe(true);
25- // expect(closeButton.isEnabled()).toBe(true);
26- // });
17+ it ( 'should display a button to close the installer' , function ( ) {
18+ expect ( closeButton . isDisplayed ( ) ) . toBe ( true ) ;
19+ expect ( closeButton . isEnabled ( ) ) . toBe ( true ) ;
20+ } ) ;
2721
2822 it ( 'should display a alert to a mention if successfull installation' , function ( ) {
2923 expect ( installAlert . isDisplayed ( ) ) . toBe ( true ) ;
0 commit comments