that object doesn't exist

This commit is contained in:
John Bintz 2011-06-13 08:14:24 -04:00
parent ac7cf07d5d
commit f3e63c3031
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
if !jasmine? if !jasmine?
throw new Exception("jasmine not laoded!") throw new Error("jasmine not laoded!")
class HeadlessReporterResult class HeadlessReporterResult
constructor: (name) -> constructor: (name) ->

View File

@ -2,7 +2,7 @@
var HeadlessReporterResult; var HeadlessReporterResult;
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
if (!(typeof jasmine !== "undefined" && jasmine !== null)) { if (!(typeof jasmine !== "undefined" && jasmine !== null)) {
throw new Exception("jasmine not laoded!"); throw new Error("jasmine not laoded!");
} }
HeadlessReporterResult = (function() { HeadlessReporterResult = (function() {
function HeadlessReporterResult(name) { function HeadlessReporterResult(name) {