source: trip-planner-front/node_modules/karma/lib/index.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 487 bytes
Line 
1'use strict'
2
3const constants = require('./constants')
4const Server = require('./server')
5const runner = require('./runner')
6const stopper = require('./stopper')
7const launcher = require('./launcher')
8const cfg = require('./config')
9
10module.exports = {
11 constants: constants,
12 VERSION: constants.VERSION,
13 Server: Server,
14 runner: runner,
15 stopper: stopper,
16 launcher: launcher,
17 config: { parseConfig: cfg.parseConfig } // lets start with only opening up the `parseConfig` api
18}
Note: See TracBrowser for help on using the repository browser.