/contacts-jquerymobile/src/test/qunit/index.html

https://gitlab.com/avinashmx/WildFly · HTML · 71 lines · 38 code · 8 blank · 25 comment · 0 complexity · ca1a798f536a2f71ed85b5e24fdde84c MD5 · raw file

  1. <!--
  2. JBoss, Home of Professional Open Source
  3. Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
  4. contributors by the @authors tag. See the copyright.txt in the
  5. distribution for a full listing of individual contributors.
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <!DOCTYPE html>
  17. <!--
  18. Base test file for running quit tests. Load this into any browser to execute
  19. the tests for the HTML5/Mobile application.
  20. -->
  21. <html>
  22. <head>
  23. <meta charset="UTF-8" />
  24. <title>HTML5 Test Suite</title>
  25. <link rel="stylesheet" href="qunit/qunit-1.14.0.css" type="text/css" media="screen">
  26. <!-- Libraries -->
  27. <script src="../../main/webapp/js/libs/jquery-2.0.3.min.js"></script>
  28. <script src="../../main/webapp/js/libs/lodash-2.4.1.min.js"></script>
  29. <script src="../../main/webapp/js/libs/jquery.validate-1.13.1.js"></script>
  30. <script src="../../main/webapp/js/libs/additional-methods-1.13.1.js"></script>
  31. <script src="../../main/webapp/js/libs/intlTelInput-libPhoneNumber-3.7.1.js"></script>
  32. <script src="../../main/webapp/js/libs/intlTelInput-3.7.1.js"></script>
  33. <script src="qunit/qunit-1.14.0.js"></script>
  34. <!-- The js file to be tested -->
  35. <script src="../../main/webapp/js/namespace.js"></script>
  36. <script src="../../main/webapp/js/util.js"></script>
  37. <script src="../../main/webapp/js/formSetup.js"></script>
  38. <script src="../../main/webapp/js/app.js"></script>
  39. <script src="../../main/webapp/js/validation.js"></script>
  40. <script src="../../main/webapp/js/submissions.js"></script>
  41. <!-- The js file that contains the tests -->
  42. <script src="test/test.js"></script>
  43. <script src="test/app_tests.js"></script>
  44. <script src="test/submissions_tests.js"></script>
  45. <script src="test/util_tests.js"></script>
  46. <script src="test/validation_tests.js"></script>
  47. <!-- jQuery Mobile Library: it needs to run last. -->
  48. <script src="../../main/webapp/js/libs/jquery.mobile-1.4.2.js"></script>
  49. <!-- Underscore.js Template for building contacts (simplified for testing) -->
  50. <script type="text/template" id="contact-tmpl"><% _.each(contacts, function(contact) { %><div><%=contact.id%></div><% }); %></script>
  51. </head>
  52. <body>
  53. <h1 id="qunit-header">HTML5 Test Suite</h1>
  54. <h2 id="qunit-banner"></h2>
  55. <div id="qunit-testrunner-toolbar"></div>
  56. <h2 id="qunit-userAgent"></h2>
  57. <ol id="qunit-tests"></ol>
  58. <div id="qunit-fixture">
  59. test markup
  60. </div>
  61. </body>
  62. </html>