Skip to content
This repository has been archived by the owner on Aug 8, 2019. It is now read-only.

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
iyegoroff committed Aug 22, 2016
1 parent 499b7e8 commit d4e5d7e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions tests/functional/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ function (bdd, expect, IndexPage) {
};

var checkDates = function (indexPage, expected) {
console.log(expected[1]);
console.log('expected', datesToStrings(expected).join(', '));

return indexPage.selectedDates()
.then(function (dates) {
console.log(dates[1]);
console.log('selected', datesToStrings(dates).join(', '));
expect(datesToStrings(dates)).to.have.all.members(datesToStrings(expected));

return indexPage.multiSelectSelectedDates();
})
.then(function (dates) {
console.log(dates[1]);
console.log('ms', datesToStrings(dates).join(', '));
expect(datesToStrings(dates)).to.have.all.members(datesToStrings(expected));

return indexPage.calendarSelectedDates();
})
.then(function (dates) {
console.log(dates[1]);
console.log('cal', datesToStrings(dates).join(', '));
expect(datesToStrings(dates)).to.have.all.members(datesToStrings(expected));
});
};
Expand Down
2 changes: 1 addition & 1 deletion tests/intern.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ define({
{ browserName: 'firefox' }
],

maxConcurrency: 2,
maxConcurrency: 1,

tunnel: 'NullTunnel',

Expand Down

0 comments on commit d4e5d7e

Please sign in to comment.