Files
meteor/packages/modules-runtime/modules-runtime-tests.js
Ben Newman f73a2a968a Move implementation of meteorInstall into modules-runtime.
This allows the modules package to use meteorInstall to define itself.
2016-01-18 18:54:56 -05:00

6 lines
169 B
JavaScript

Tinytest.add('modules', function (test) {
test.equal(typeof meteorInstall, "function");
var require = meteorInstall();
test.equal(typeof require, "function");
});