remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/test/compiler-test.js

17 lines
386 B

'use strict'
var test = require('tape')
var Compiler = require('../babelify-src/app/compiler')
test('compiler.compile smoke', function (t) {
t.plan(1)
var noop = function () {}
var fakeImport = function (url, cb) { cb('Not implemented') }
var compiler = new Compiler(fakeImport)
compiler.setCompileJSON(noop)
compiler.compile({ 'test': '' }, 'test')
t.ok(compiler)
})