Addnew sheets (armor, weapons, malefica) and v13 support

This commit is contained in:
2025-05-18 23:51:26 +02:00
parent 7672f861ff
commit 995d61e1c6
4478 changed files with 667857 additions and 620 deletions

29
node_modules/level-supports/test/index.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
'use strict'
const shape = require('./shape')
const cloneable = require('./cloneable')
module.exports = function suite (test, testCommon) {
test('db has manifest', function (t) {
const db = testCommon.factory()
const manifest = db.supports
shape(t, manifest)
cloneable(t, manifest)
const before = Object.assign({}, manifest, {
additionalMethods: Object.assign({}, manifest.additionalMethods)
})
db.open(function (err) {
t.ifError(err, 'no open error')
t.same(db.supports, before, 'manifest did not change after open')
db.close(function (err) {
t.ifError(err, 'no close error')
t.same(db.supports, before, 'manifest did not change after close')
t.end()
})
})
})
}