Files
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

12 lines
196 B
JavaScript

'use strict';
var systemGlobal = require('../');
var test = require('tape');
var runTests = require('./tests');
test('as a function', function (t) {
runTests(systemGlobal(), t);
t.end();
});