Commit c13ae582 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Corrige bugs en ejecución de tests

parent 89dc6914
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ module.exports = function(args) {
		_intern = require('./_intern')(args),
		_functions = require('./_functions'),

		testsPath = args.testsPath,
		testsPath = 'test',
		suitesGroups = args.suitesGroups,	// TODO por ahora no funciona, porque se recorre desde directorio no controlable
		suites = args.suites,

+5 −2
Original line number Diff line number Diff line
@@ -25,7 +25,9 @@ module.exports = function(args) {
	var drivers = [];

	var chromeDriver = {
		name: 'chrome'
		name: 'chrome',
		baseUrl: 'https://storage.googleapis.com/chrome-for-testing-public',
		platform: 'linux64'
	};

	if (chromeVersion) {
@@ -55,7 +57,8 @@ module.exports = function(args) {

	var config = {
		capabilities: {
			'idle-timeout': 30
			'idle-timeout': 30,
			'fixSessionCapabilities': true
		},

		environments: environments,
+1 −1

File changed.

Contains only whitespace changes.