Skip to content

Commit

Permalink
webcompat#272 Changes issue number for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
karlcow committed Aug 12, 2015
1 parent f401b1e commit 0ee89fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/functional/labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ define([
// The setup function should make sure we are not logged.
return this.remote
.setFindTimeout(intern.config.wc.pageLoadTimeout)
.get(require.toUrl(url(100)))
.get(require.toUrl(url(2)))
.findByCssSelector('.js-login-link').click()
.end()
.findByCssSelector('#login_field').click()
Expand All @@ -40,7 +40,7 @@ define([
'label gear is visible': function () {
return this.remote
.setFindTimeout(intern.config.wc.pageLoadTimeout)
.get(require.toUrl(url(100)))
.get(require.toUrl(url(2)))
.findByCssSelector('.LabelEditor-wrapper')
.isDisplayed()
.then(function (displayed) {
Expand All @@ -52,7 +52,7 @@ define([
'label widget is opening on click': function () {
return this.remote
.setFindTimeout(intern.config.wc.pageLoadTimeout)
.get(require.toUrl(url(100)))
.get(require.toUrl(url(2)))
.findByCssSelector('.LabelEditor-launcher').click()
.end()
.findByCssSelector('.LabelEditor')
Expand All @@ -66,7 +66,7 @@ define([
'Label appears once selected': function () {
return this.remote
.setFindTimeout(intern.config.wc.pageLoadTimeout)
.get(require.toUrl(url(100)))
.get(require.toUrl(url(2)))
.findByCssSelector('.LabelEditor-launcher').click()
.end()
.findByCssSelector('label.LabelEditor-item input[name="contactready"]').click()
Expand Down

0 comments on commit 0ee89fa

Please sign in to comment.