Files
yjs/tests/index.js

12 lines
340 B
JavaScript
Raw Normal View History

2019-03-01 23:26:40 +01:00
import { runTests } from 'funlib/testing.js'
import { isBrowser } from 'funlib/environment.js'
import * as log from 'funlib/logging.js'
import * as deleteStoreTest from './DeleteStore.tests.js'
import * as arrayTest from './y-array.tests.js'
2019-03-01 23:26:40 +01:00
if (isBrowser) {
log.createVConsole(document.body)
}
runTests({ deleteStoreTest, arrayTest })