UNPKG

311 Btext/coffeescriptView Raw
1getSchema = (id) ->
2 id = id.replace '.json', ''
3 schema = module.exports.schema[id]
4 return schema
5
6module.exports =
7 runner: require './runner'
8 subprocess: require './subprocess'
9 mocha: require './mocha'
10 testsuite: require './testsuite'
11 schema: require '../schema'
12 getSchema: getSchema
13 ui: {}