Commit d39ee424 authored by CarlosGC1989's avatar CarlosGC1989
Browse files

Arregla errores detectados en los tests

parent 1a813263
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -15,7 +15,8 @@ define([
	new _Domain({
		namePrefix: namePrefix,
		urlValue: urlValue,
		textSearchValue: textSearchValue
		textSearchValue: textSearchValue,
		newOrderingValue: 'name_en'
	});

	new _DomainFormEdition({
+1 −0
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@ define([

				return this.parent
					.then(indexPage.addItem())
					.sleep(Config.timeout.shortSleep)
					.then(indexPage.complete(x, y))
					.then(isGeometryCorrect())
					.then(function(value) {
+2 −2
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ define([
						.then(indexPage.getFirstIndexItemWithChildren())
						.then(function(parentIndex) {

							if (parentIndex !== undefined) {
							if (parentIndex) {
								return this.parent.then(indexPage.clickRowInExpandButton(parentIndex));
							}
						});
@@ -39,7 +39,7 @@ define([
						.then(indexPage.getFirstIndexItemWithChildren())
						.then(function(parentIndex) {

							if (parentIndex !== undefined) {
							if (parentIndex) {
								return this.parent.then(indexPage.clickRowInExpandButton(parentIndex))
									.then(indexPage.clickRowInCollapseButton(parentIndex));
							}
+5 −2
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ define([
		constructor: function(args) {

			this.propsConfig = {
				listIntabs: true

			};

			lang.mixin(this.propsConfig, args);
@@ -51,6 +51,7 @@ define([

				obj.suiteName = 'Atlas' + suiteName;
				obj.notClickLayerMap = true;
				obj.listIntabs = true;

				Utils.registerTests({
					suiteName: 'Atlas' + suiteName,
@@ -58,11 +59,13 @@ define([
					properties: obj
				});
			} else {
				obj = lang.clone(this.propsConfig);
				obj.listIntabs = true;

				Utils.registerTests({
					suiteName: 'Map' + suiteName,
					definition: MapTests,
					properties: this.propsConfig
					properties: obj
				});
			}