1234567891011121314151617181920212223242526272829303132333435 |
- /* global document, location, addEventListener */
- // Open `index.html` in a browser to run this file
- import tests from "./tests-data.js";
- const table = document.createElement("table");
- tests.forEach(test => {
- const row = document.createElement("tr");
- const cellTest = document.createElement("td");
- const cellLink = document.createElement("td");
- const iframe = document.createElement("iframe");
- const link = document.createElement("a");
- link.textContent = test.title;
- link.target = test.script;
- row.dataset.script = test.script;
- link.href = iframe.src = (test.env || "all") + "/loader.html#" + encodeURIComponent(JSON.stringify({ script: test.script }));
- cellTest.appendChild(iframe);
- cellLink.appendChild(link);
- row.appendChild(cellLink);
- row.appendChild(cellTest);
- table.appendChild(row);
- });
- document.body.appendChild(table);
- if (!location.search.startsWith("?keepTests")) {
- addEventListener("message", event => {
- const result = JSON.parse(event.data);
- if (!result.error) {
- Array.from(document.querySelectorAll("tr")).find(row => row.dataset.script == result.script).remove();
- }
- if (!document.querySelectorAll("tr").length) {
- document.body.innerHTML = "ok";
- }
- }, false);
- }
|