inferno_core 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0179a8526d51c9d283d12ff881abd62ac49975ce5b6dd8715286500ccf5c5f4
4
- data.tar.gz: b014cab29f7fc07a39abbef326d7e53ccc5ebbe8120ff2dd207793713f5e9058
3
+ metadata.gz: d44d2d4f0afb51b463a128ce7725183159791fe21464c2fa28b10b3b919c37ab
4
+ data.tar.gz: b62acf63e2bb524bcb22048e4e4d5b433a727c6a7a8201ae8161237fc4dbcfb3
5
5
  SHA512:
6
- metadata.gz: f5fa6c9d8be9f9c89fe46e80aa59696f4a8abc524a532c4b5274f9ab52e7c0994f1a2786a56bf8b7c63c75709a8ebffbcd650fed2ed6391760b83b144846d0f2
7
- data.tar.gz: 361841cbbe85099e49606e3a279a7242290c2564450afb6a76c129f78d67bba965571275f7eea8c66d930d744afbb720f7da390ec41125d55159a00af1edfda4
6
+ metadata.gz: 7658c22a6d5595f39a36589a853992420b31717c6002ce0262eabcfcabe4def7c97de8f8fa5a52ad785a7e4c6b25fb471282584bdbfde266ed6388ee8dfc7b8b
7
+ data.tar.gz: 9972288e75af701edc3f70457835384f6f51ad5e64d14bfaf4b5ec0855786ca51455e79067de007f44964bbecfc9b84b1a862b6468a72464026152c41acb5536
@@ -1,6 +1,9 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
3
  <head>
4
+ <!-- Use the highest supported document mode of Internet Explorer -->
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+
4
7
  <meta charset="utf-8" />
5
8
  <link rel="icon" href="<%= Inferno::Application['public_path'] %>/favicon.ico" />
6
9
  <meta name="viewport" content="width=device-width, initial-scale=1" />
@@ -46,7 +49,7 @@
46
49
  <noscript>You need to enable JavaScript to run this app.</noscript>
47
50
  <div class='wrapper'>
48
51
  <% if File.exist? (File.join(Dir.pwd, 'config', 'banner.html.erb')) %>
49
- <div class='banner'><%= ERB.new(File.read(File.join(Dir.pwd, 'config', 'banner.html.erb'))).result %></div>
52
+ <div class='banner'><%= ERB.new(File.read(File.join(Dir.pwd, 'config', 'banner.html.erb'))).result %></div>
50
53
  <% end %>
51
54
  <div class='app' id="root"></div>
52
55
  </div>
@@ -67,7 +67,9 @@ module Inferno
67
67
  self.class.named_requests_used.map do |request_name|
68
68
  request_alias = self.class.config.request_name(request_name)
69
69
  request = requests_repo.find_named_request(test_session_id, request_alias)
70
- raise StandardError, "Unable to find '#{request_alias}' request" if request.nil?
70
+ if request.nil?
71
+ raise Exceptions::SkipException, "Request `#{request_alias}` was not made in a previous test as expected."
72
+ end
71
73
 
72
74
  requests << request
73
75
  end