mirror of https://github.com/jkjoy/sunpeiwen.git
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();
|
||
|
});
|