Fix example_runner.html to call env.addReporter rather that set env.reporter directly.

This commit is contained in:
Lee Byrd & Christian Williams 2010-06-24 11:32:22 -07:00
parent 3d66c5f051
commit 25f57c3321
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
<body>
<script type="text/javascript">
var jasmineEnv = jasmine.getEnv();
jasmineEnv.reporter = new jasmine.TrivialReporter();
jasmineEnv.addReporter(jasmine.TrivialReporter());
jasmineEnv.execute();
</script>