Extend timeout in browser tests

This commit is contained in:
Yuya Ochiai
2015-12-24 00:45:23 +09:00
parent f3d668f4a0
commit c5aba41488

View File

@@ -24,6 +24,8 @@ var options = {
};
describe('electron-mattermost', function() {
this.timeout(10000);
before(function(done) {
fs.unlink(config_file_path, function(err) {
// waiting for chromedriver
@@ -125,7 +127,6 @@ describe('electron-mattermost', function() {
});
it('should show only the selected team', function(done) {
this.timeout(5000);
var checkVisility = function(visibleIndex) {
return function(isVisible) {
isVisible.forEach(function(v, index) {