pull/1/head
yann300 8 years ago
parent e6adf1da19
commit 9356a946e9
  1. 3
      test/compiler-test.js

@ -8,9 +8,8 @@ test('compiler.compile smoke', function (t) {
var noop = function () {};
var getCacheFile = function () { return 'fakeCacheFile'; };
var fakeEditor = {onChangeSetup: noop, clearAnnotations: noop, getValue: noop, setCacheFileContent: noop, getCacheFile: getCacheFile};
var fakeOutputField = {empty: noop};
var fakeQueryParams = {get: function () { return {}; }};
var compiler = new Compiler(fakeEditor, null, fakeQueryParams, null, fakeOutputField);
var compiler = new Compiler(fakeEditor, fakeQueryParams, null, null);
compiler.setCompileJSON(noop);
compiler.compile();
t.ok(compiler);

Loading…
Cancel
Save