yjs/tests/index.js
2019-03-01 23:28:11 +01:00

11 lines
273 B
JavaScript

import { runTests } from 'funlib/testing.js'
import * as deleteStore from './DeleteStore.tests.js'
import { isBrowser } from 'funlib/environment.js'
import * as log from 'funlib/logging.js'
if (isBrowser) {
log.createVConsole(document.body)
}
runTests({ deleteStore })