1234567891011121314151617181920212223242526272829303132333435363738 |
- BABYLONDEVTOOLS.Loader.require('../validation/validation.js')
- .load(function() {
- var needInit = false;
- document.getElementById("run").addEventListener("click", function() {
- // Loading tests
- var xhr = new XMLHttpRequest();
- xhr.open("GET", "../validation/config.json", true);
- xhr.addEventListener("load", function () {
- if (xhr.status === 200) {
- config = JSON.parse(xhr.responseText);
- // Run tests
- var index = 0;
- if (needInit) {
- init();
- }
- var title = document.getElementById("sceneName").value.toLowerCase();
- for (var index = 0; index < config.tests.length; index++) {
- if (config.tests[index].title.toLowerCase() === title) {
- break;
- }
- }
- runTest(index, function() {
- dispose();
- needInit = true;
- });
- }
- }, false);
- xhr.send();
- });
- });
|