Akron | bb901a8 | 2018-07-26 17:08:07 +0200 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <meta charset="utf-8"> |
| 5 | <title>Spec Runner for Kalamar</title> |
| 6 | <link rel="shortcut icon" type="image/png" href="../lib/jasmine-2.1.1/jasmine_favicon.png"> |
| 7 | <link rel="stylesheet" href="../lib/jasmine-2.1.1/jasmine.css"> |
| 8 | <script src="../lib/require.js"></script> |
| 9 | <!-- |
| 10 | <script src="../lib/jasmine-2.1.1/jasmine.js"></script> |
| 11 | <script src="../lib/jasmine-2.1.1/jasmine-html.js"></script> |
| 12 | <script src="../lib/jasmine-2.1.1/boot.js"></script> |
| 13 | --> |
| 14 | <script> |
| 15 | require.config({ |
| 16 | baseUrl: "../src", |
| 17 | paths: { |
| 18 | "lib" : "../lib", |
| 19 | "spec" : "../spec", |
| 20 | "jlib" : "lib/jasmine-2.1.1", |
| 21 | "jasmine" : ['../lib/jasmine-2.1.1/jasmine'], |
| 22 | "jasmine-html": ['../lib/jasmine-2.1.1/jasmine-html'], |
| 23 | "jasmine-boot": ['../lib/jasmine-2.1.1/boot'] |
| 24 | }, |
| 25 | shim : { |
| 26 | 'jasmine-html' : { |
| 27 | deps : ['jasmine'] |
| 28 | }, |
| 29 | 'jasmine-boot' : { |
| 30 | deps : ['jasmine','jasmine-html'] |
| 31 | } |
| 32 | } |
| 33 | }); |
| 34 | |
| 35 | require(['jasmine-boot'], function () { |
| 36 | require([ |
| 37 | 'spec/matchSpec', |
| 38 | 'spec/hintSpec', |
| 39 | 'spec/buttongroupSpec', |
| 40 | 'spec/datepickerSpec', |
| 41 | 'spec/menuSpec', |
| 42 | 'spec/selectMenuSpec', |
| 43 | 'spec/panelSpec', |
| 44 | 'spec/pluginSpec', |
| 45 | 'spec/queryCreatorSpec', |
| 46 | 'spec/statSpec', |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 47 | // 'spec/vcSpec' |
Akron | bb901a8 | 2018-07-26 17:08:07 +0200 | [diff] [blame] | 48 | ], |
| 49 | function () { |
| 50 | window.onload(); |
| 51 | }); |
| 52 | }); |
| 53 | </script> |
| 54 | </head> |
| 55 | <body></body> |
| 56 | </html> |