All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
213 B
JavaScript
11 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();
|
|
});
|