scoped
Version:
command line tool exposing lexical-scope
20 lines (11 loc) • 309 B
JavaScript
var scoped = require('../index')
, test = require('tape')
test('cli exits with 0 on no explicit globals', function(assert) {
assert.end()
})
test('cli exits with 1 on explicit globals', function(assert) {
assert.end()
})
test('cli produces expected output', function(assert) {
assert.end()
})