mirror of https://github.com/n2geoff/testit.git
24 lines
677 B
HTML
24 lines
677 B
HTML
<!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>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
test.run(function(r) {
|
|
document.body.style.backgroundColor = (
|
|
r.fail.length ? "#ff9999" : "#99ff99"
|
|
);
|
|
|
|
r.pass.forEach((p) => document.write(`<br>${p}`));
|
|
r.fail.forEach((f) => document.write(`<br><b>${f}</b>`));
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|