12 lines
196 B
JavaScript
Raw Permalink Normal View History

2023-12-03 18:52:09 +03:00
'use strict';
var systemGlobal = require('../');
var test = require('tape');
var runTests = require('./tests');
test('as a function', function (t) {
runTests(systemGlobal(), t);
t.end();
});