Files
yjs/tests/index.js

12 lines
318 B
JavaScript
Raw Normal View History

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