eyes_core 3.7.10 → 3.7.11
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8730857b5f2b0675413cf154b36f17054be7bdb6
|
4
|
+
data.tar.gz: 6616736edfeddaf9032989ac0c2c07f7a6c1872a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d301b92e73344dce589e3b7552719e71881ec7cc0ee8799de128948ddec8a04e8dc0c8348d2e38b8e08dbe997330fc903dfdfb70c65ac7eeac17753a7274540c
|
7
|
+
data.tar.gz: 622e3717f754c58dee68d04f0ca3b977ccae7d353252924f3492f193ef09c5da8ab84e45e6ac336b14455d782a9b0e8e6c5285082d9b1bfea93bf15b2388edd9
|
@@ -264,7 +264,7 @@ module Applitools
|
|
264
264
|
scenario_id_or_name: test_name, batch_info: batch,
|
265
265
|
env_name: baseline_name, environment: app_environment,
|
266
266
|
default_match_settings: default_match_settings,
|
267
|
-
branch_name: branch_name, parent_branch_name: parent_branch_name
|
267
|
+
branch_name: branch_name, parent_branch_name: parent_branch_name, properties: properties
|
268
268
|
|
269
269
|
match_window_data.start_info = session_start_info
|
270
270
|
match_window_data.update_baseline_if_new = save_new_tests
|
@@ -14,7 +14,8 @@ module Applitools
|
|
14
14
|
'environment' => {},
|
15
15
|
'defaultMatchSettings' => nil,
|
16
16
|
'branchName' => nil,
|
17
|
-
'parentBranchName' => nil
|
17
|
+
'parentBranchName' => nil,
|
18
|
+
'properties' => nil
|
18
19
|
},
|
19
20
|
'IgnoreMismatch' => false,
|
20
21
|
'MismatchWait' => 0,
|
@@ -74,6 +75,7 @@ module Applitools
|
|
74
75
|
current_data['startInfo']['defaultMatchSettings'] = hash_value[:default_match_settings]
|
75
76
|
current_data['startInfo']['branchName'] = hash_value[:branch_name]
|
76
77
|
current_data['startInfo']['parentBranchName'] = hash_value[:parent_branch_name]
|
78
|
+
current_data['startInfo']['properties'] = hash_value[:properties]
|
77
79
|
end
|
78
80
|
|
79
81
|
def update_baseline_if_different=(value)
|
data/lib/applitools/version.rb
CHANGED