testit/test/run.html

26 lines
795 B
HTML
Raw Normal View History

2018-03-31 22:45:35 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Test It Spec</title>
<script src="../src/testit.js"></script>
<script src="./index.spec.js"></script>
2018-03-31 22:45:35 +00:00
</head>
<body>
<script>
test.run(function(r) {
document.body.style.backgroundColor = (
r.fail.length ? "#ff9999" : "#99ff99"
);
2018-03-31 22:45:35 +00:00
r.pass.forEach((p) => document.write(`<br>${p}`));
r.fail.forEach((f) => document.write(`<br><b>${f}</b>`));
2018-06-06 10:36:42 +00:00
document.write(`<p>tests ${r.pass.length + r.fail.length} pass ${r.pass.length} fail ${r.fail.length}`);
2018-03-31 22:45:35 +00:00
});
</script>
</body>
</html>