mirror of
https://github.com/davidmarkclements/0x.git
synced 2026-01-25 14:47:55 +00:00
8 lines
121 B
JavaScript
8 lines
121 B
JavaScript
const { test } = require('tap')
|
|
|
|
test('module loads', function (t) {
|
|
require('../')
|
|
t.pass('0x loaded')
|
|
t.end()
|
|
})
|