UNPKG

bromote

Version:

Tool to setup and require remote scripts with browserify.

14 lines (10 loc) 269 B
'use strict'; /*jshint asi: true */ var test = require('tape') var bromote = require('../..') test('\nremote runnel', function (t) { t.plan(1) bromote.runnel(function (runnel) { t.equal(typeof runnel, 'function', 'pulls runnel from remote url') }); })