yjs/tests/index.js
2019-03-04 14:28:18 +01:00

12 lines
340 B
JavaScript

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'
if (isBrowser) {
log.createVConsole(document.body)
}
runTests({ deleteStoreTest, arrayTest })