Sha256: b6aa7ab19a802e4eb3b2ba75be8936e82ab1888e4fb281ac0bbed2ab7a7657c2

Contents?: true

Size: 943 Bytes

Versions: 2

Compression:

Stored size: 943 Bytes

Contents

<!DOCTYPE>
<html>
  <head>
    <title>Teabag :: Javascript Test Runner</title>
    <%= stylesheet_link_tag *@suite.stylesheets %>
    <%= csrf_meta_tags %>
    <meta name="viewport" content="width=device-width, user-scalable=no">
    <%= javascript_include_tag_for_teabag *@suite.core_javascripts %>
    <script type="text/javascript">
      // pass relevant info to javascript
      Teabag.version = <%=raw Teabag::VERSION.inspect %>;
      Teabag.root = <%=raw Teabag.configuration.mount_at.inspect %>;
      Teabag.suites = <%=raw @suite.suites.to_json %>;

      // start the execution of the specs (on onload, handling existing onload events)
      window.originalOnload = window.onload;
      window.onload = function() {
        if (window.originalOnload) window.originalOnload();
        Teabag.execute();
      }
    </script>
    <%= javascript_include_tag_for_teabag *@suite.spec_javascripts %>
  </head>
  <body>
  </body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
teabag-0.4.4 app/views/teabag/spec/index.html.erb
teabag-0.4.3 app/views/teabag/spec/index.html.erb