File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 39
39
"grunt-contrib-watch" : " ^1.1.0" ,
40
40
"grunt-postcss" : " ^0.9.0" ,
41
41
"husky" : " ^1.1.3" ,
42
- "intern" : " ^4.2.0 " ,
42
+ "intern" : " 4.4.1 " ,
43
43
"leadfoot" : " 1.7.6" ,
44
44
"lint-staged" : " ^8.0.4" ,
45
45
"load-grunt-tasks" : " ^4.0.0" ,
Original file line number Diff line number Diff line change @@ -67,21 +67,21 @@ registerSuite("Index", {
67
67
. findByCssSelector ( ".js-IssueList.label-needstriage .js-issue-number" )
68
68
. getVisibleText ( )
69
69
. then ( function ( text ) {
70
- assert . match ( text , / ^ I s s u e \s ( \d + ) $ / , "Issue should have a number" ) ;
70
+ assert . match ( text , / I s s u e \s ( \d + ) $ / , "Issue should have a number" ) ;
71
71
} )
72
72
. end ( )
73
73
. findByCssSelector ( ".js-IssueList.label-needstriage .js-issue-desc a" )
74
74
. getAttribute ( "href" )
75
75
. then ( function ( text ) {
76
- assert . match ( text , / ^ \/ i s s u e s \/ \d + $ / , "Link should have a number" ) ;
76
+ assert . match ( text , / \/ i s s u e s \/ \d + $ / , "Link should have a number" ) ;
77
77
} )
78
78
. end ( )
79
79
. findByCssSelector ( ".js-IssueList.label-needstriage .js-issue-desc" )
80
80
. getVisibleText ( )
81
81
. then ( function ( text ) {
82
82
assert . match (
83
83
text ,
84
- / ^ I s s u e \s \d + \n .+ / ,
84
+ / I s s u e \s \d + \n .+ / ,
85
85
"Issue should have a non-empty title"
86
86
) ;
87
87
} )
You can’t perform that action at this time.
0 commit comments