This commit is contained in:
2026-05-13 19:58:16 +03:00
commit f5adeb292b
78 changed files with 12024 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
const expect = require('chai').expect
const version = require('../version')
describe('version factory', function() {
it('should produce a valid version', function() {
var v = version()
expect(v).to.be.an('object')
expect(v).to.deep.equal({
type: 'version',
version: 1
})
})
})