Skip to content

Commit 8fb5a6c

Browse files
author
Mike Taylor
authored
Merge pull request #2773 from marimeireles/issues/2764/1
Fixes #2764 - Updates intern dep. to a version that's not broken
2 parents 54c3e06 + dd39560 commit 8fb5a6c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"grunt-contrib-watch": "^1.1.0",
4040
"grunt-postcss": "^0.9.0",
4141
"husky": "^1.1.3",
42-
"intern": "^4.2.0",
42+
"intern": "4.4.1",
4343
"leadfoot": "1.7.6",
4444
"lint-staged": "^8.0.4",
4545
"load-grunt-tasks": "^4.0.0",

tests/functional/index-non-auth.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,21 +67,21 @@ registerSuite("Index", {
6767
.findByCssSelector(".js-IssueList.label-needstriage .js-issue-number")
6868
.getVisibleText()
6969
.then(function(text) {
70-
assert.match(text, /^Issue\s(\d+)$/, "Issue should have a number");
70+
assert.match(text, /Issue\s(\d+)$/, "Issue should have a number");
7171
})
7272
.end()
7373
.findByCssSelector(".js-IssueList.label-needstriage .js-issue-desc a")
7474
.getAttribute("href")
7575
.then(function(text) {
76-
assert.match(text, /^\/issues\/\d+$/, "Link should have a number");
76+
assert.match(text, /\/issues\/\d+$/, "Link should have a number");
7777
})
7878
.end()
7979
.findByCssSelector(".js-IssueList.label-needstriage .js-issue-desc")
8080
.getVisibleText()
8181
.then(function(text) {
8282
assert.match(
8383
text,
84-
/^Issue\s\d+\n.+/,
84+
/Issue\s\d+\n.+/,
8585
"Issue should have a non-empty title"
8686
);
8787
})

0 commit comments

Comments
 (0)