From 8439db6e44b8c15915b28852e3c722bb92e3445c Mon Sep 17 00:00:00 2001 From: Alex Moinet Date: Fri, 13 Apr 2018 17:13:22 +0100 Subject: [PATCH] test(CI): Test endpoint values on Travis --- features/steps/ruby_notifier_steps.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features/steps/ruby_notifier_steps.rb b/features/steps/ruby_notifier_steps.rb index a5896b8f0..310a6aad9 100644 --- a/features/steps/ruby_notifier_steps.rb +++ b/features/steps/ruby_notifier_steps.rb @@ -1,7 +1,11 @@ require 'net/http' require 'open3' +require 'pp' When("I configure the bugsnag endpoint") do + pp current_ip + pp MOCK_API_PORT + pp "http://#{current_ip}:#{MOCK_API_PORT}" steps %Q{ When I set environment variable "MAZE_ENDPOINT" to "http://#{current_ip}:#{MOCK_API_PORT}" }