taprunner.mustache #1

  • //
  • guest/
  • jen_bottom/
  • ember/
  • tutorial/
  • testapp/
  • node_modules/
  • testem/
  • views/
  • taprunner.mustache
  • View
  • Commits
  • Open Download .zip Download (440 B)
<!doctype html>
<html>
<head>
<title>Test'em</title>
<script src="/testem.js"></script>
</head>
<body>
<h1>TAP</h1>
<pre id="log"></pre>
<script>
var log = document.getElementById('log')
Testem.handleConsoleMessage = function(msg){
  Testem.emit('tap', msg)
  log.appendChild(document.createTextNode(msg + '\n'))
  return false
}
</script>
{{#scripts}}<script src="{{{src}}}"{{#attrs}} {{&.}}{{/attrs}}></script>{{/scripts}}
</body>
</html>
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command