Skip to content

Instantly share code, notes, and snippets.

@grauwoelfchen
Created August 20, 2013 17:29
Show Gist options
  • Save grauwoelfchen/6284547 to your computer and use it in GitHub Desktop.
Save grauwoelfchen/6284547 to your computer and use it in GitHub Desktop.
HTML for Test Suite
<!DOCTYPE html>
<html lang="utf-8">
<head>
<meta charset="UTF-8">
<title>Test</title>
<style>
#results li.pass { color: green; }
#results li.fail { color: red; }
</style>
<script type="text/javascript" src="/path/to/test.js"></script>
<script type="text/javascript">
// ...
</script>
</head>
<body>
<ul id="results"></ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment