UNPKG

318 BJavaScriptView Raw
1'use strict'
2
3const opts = { ui: 'bdd' }
4const params = new URLSearchParams(location.search)
5
6for (const opt of ['ui', 'reporter', 'timeout']) {
7 if (params.has(opt)) opts[opt] = params.get(opt)
8}
9
10mocha.setup(opts)
11const suite= params.get('suite') || 'test/suite'
12require.async(suite, function() {
13 mocha.run()
14})