mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 20:48:15 +08:00
12 lines
196 B
JavaScript
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();
|
|
});
|