Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKamaev committed Mar 16, 2018
1 parent 5ec78da commit 9e4c057
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ function testFunctional (fixturesDir, testingEnvironmentName, browserProviderNam
.pipe(mocha({
ui: 'bdd',
reporter: 'spec',
timeout: typeof v8debug === 'undefined' ? 30000 : Infinity // NOTE: disable timeouts in debug
timeout: typeof v8debug === 'undefined' ? 30000000 : Infinity // NOTE: disable timeouts in debug
}));
}

Expand All @@ -576,7 +576,7 @@ gulp.task('test-functional-travis-mobile', ['build'], function () {
return testFunctional('test/functional/fixtures', functionalTestConfig.testingEnvironmentNames.mobileBrowsers, functionalTestConfig.browserProviderNames.browserstack);
});

gulp.task('test-functional-local', ['build'], function () {
gulp.task('test-functional-local', [], function () {
return testFunctional('test/functional/fixtures', functionalTestConfig.testingEnvironmentNames.localBrowsers);
});

Expand Down
2 changes: 1 addition & 1 deletion src/browser/connection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default class BrowserConnection extends EventEmitter {
constructor (gateway, browserInfo, permanent) {
super();

this.HEARTBEAT_TIMEOUT = 2 * 60 * 1000;
this.HEARTBEAT_TIMEOUT = 20000 * 60 * 1000;

this.id = BrowserConnection._generateId();
this.jobQueue = [];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Selector } from 'testcafe';

fixture `GH-2205 - Should type in div if it has an invisible child with contententeditable=false`
.page `http://localhost:3000/fixtures/regression/gh-2205/pages/index.html`;
// .page `http://localhost:3000/fixtures/regression/gh-2205/pages/index.html`;
.page `../pages/index.html`;

test(`Click and type in element`, async t => {
const editor = Selector('#editor1');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { expect } from 'chai';


fixture `GH-711`
.page `http://localhost:3000/fixtures/regression/gh-711/pages/index.html`;
// .page `http://localhost:3000/fixtures/regression/gh-711/pages/index.html`;
.page `../pages/index.html`;


var getBodyPlainText = ClientFunction(() => {
Expand Down

0 comments on commit 9e4c057

Please sign in to comment.