File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ cases:
155
155
- proc : open page
156
156
exec :
157
157
operate : go
158
- url : <%= ENV['FQDN '] %>/results # Using erb notation to get environment variable
158
+ url : <%= ENV['BASE_FQDN '] %>/results # Using erb notation to get environment variable
159
159
- proc : element click
160
160
exec :
161
161
operate : click
@@ -224,7 +224,7 @@ cases:
224
224
desc : status check for detail page
225
225
urls :
226
226
- https://example.com/detail/1
227
- - <%= ENV['FQDN '] %>/detail/2 # Using erb notation to get environment variable
227
+ - <%= ENV['BASE_FQDN '] %>/detail/2 # Using erb notation to get environment variable
228
228
` ` `
229
229
230
230
# Development
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ def setup_test_cond(test_cond)
135
135
%i[ suite_name case label xlabel device ] . each do |k |
136
136
test_cond [ k ] = test_cond [ k ] . split ( ',' ) unless test_cond [ k ] . nil?
137
137
end
138
- test_cond [ :base_fqdn ] = ENV [ 'BUCKY_FQDN' ]
138
+ test_cond [ :base_fqdn ] = ENV [ 'BASE_FQDN' ] ||= ''
139
139
test_cond
140
140
end
141
141
You can’t perform that action at this time.
0 commit comments