File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ define([
19
19
return this . remote
20
20
. setFindTimeout ( intern . config . wc . pageLoadTimeout )
21
21
. get ( require . toUrl ( url ) )
22
- . findByCssSelector ( 'h2 ' ) . getVisibleText ( )
22
+ . findByCssSelector ( 'h1 ' ) . getVisibleText ( )
23
23
. then ( function ( text ) {
24
24
assert . include ( text , 'Issues' , 'Page header displayed' ) ;
25
25
} )
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ define([
22
22
. setFindTimeout ( intern . config . wc . pageLoadTimeout )
23
23
. get ( require . toUrl ( url ( 100 ) ) )
24
24
. sleep ( 1000 )
25
- . findByCssSelector ( 'h2 .Issue-title' ) . getVisibleText ( )
25
+ . findByCssSelector ( 'h1 .Issue-title' ) . getVisibleText ( )
26
26
. then ( function ( text ) {
27
27
assert . include ( text , 'Issue 100:' , 'Issue title displayed' ) ;
28
28
} )
@@ -64,7 +64,7 @@ define([
64
64
. setFindTimeout ( intern . config . wc . pageLoadTimeout )
65
65
// TODO: uh, update this in the future
66
66
. get ( require . toUrl ( url ( 999999 ) ) )
67
- . findByCssSelector ( '#pageerror h2 ' ) . getVisibleText ( )
67
+ . findByCssSelector ( '#pageerror h1 ' ) . getVisibleText ( )
68
68
. then ( function ( text ) {
69
69
assert . include ( text , '(404)' , 'We\'re at the 404.' ) ;
70
70
} ) ;
You can’t perform that action at this time.
0 commit comments