mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 23:18:17 +08:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
'use strict';
|
|
|
|
var implementation = require('../implementation');
|
|
var test = require('tape');
|
|
var runTests = require('./tests');
|
|
|
|
test('implementation', function (t) {
|
|
runTests(implementation, t);
|
|
|
|
t.end();
|
|
});
|