mirror of
https://github.com/datashard/snapshot.git
synced 2025-04-23 19:07:22 +00:00
16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
'use strict'
|
|
|
|
/* eslint-env mocha */
|
|
const api = require('.')
|
|
const la = require('lazy-ass')
|
|
const is = require('check-more-types')
|
|
|
|
describe('@datashard/snapshot', () => {
|
|
it('is an object', () => {
|
|
la(is.object(api))
|
|
})
|
|
|
|
it('has register', () => {
|
|
la(is.fn(api.register))
|
|
})
|
|
})
|