summaryrefslogtreecommitdiffstats
path: root/INFO
blob: a8365ddb97fc0a6677131c0144aad7cbac782858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Project: Container Integrated For NFV  (OpenRetriever)
Repo: openretriever
Project Creation Date:Dec 13, 2016
Project Category: Integration & Testing
Lifecycle State:Incubation
Primary Contact: Xuan Jia ( jiaxuan@chinamobile.com )
Project Lead: Xuan Jia ( jiaxuan@chinamobile.com )
Jira Project Name: Container Integrated For NFV 
Jira Project Prefix: [container] 
mailing list tag [openretriever] 
IRC: Server:freenode.net Channel:#opnfv-container
Repository: openretriever

Committers:
jiaxuan@chinamobile.com
gergely.csatari@nokia.com
yu.peng36@zte.com.cn
matthew.lijun@huawei.com

Link to TSC approval of the project: http://meetbot.opnfv.org/meetings/opnfv-meeting/2016/opnfv-meeting.2016-12-13-14.59.html
Link(s) to approval of additional committers: N/A
ble.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
// Karma configuration
// Generated on Mon Jul 08 2019 14:57:05 GMT-0400 (Eastern Daylight Time)

module.exports = function(config) {
  config.set({

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '',


    // frameworks to use
    // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
    frameworks: ['mocha', 'chai'],


    // list of files / patterns to load in the browser
    files: [
      'https://code.jquery.com/jquery-3.4.1.min.js',
      '../src/static/js/dashboard.js',
      '../src/static/js/mxClient.min.js',
      'tests/*.js'
    ],


    // list of files / patterns to exclude
    exclude: [
    ],


    // preprocess matching files before serving them to the browser
    // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
    preprocessors: {
    },


    // test results reporter to use
    // possible values: 'dots', 'progress'
    // available reporters: https://npmjs.org/browse/keyword/karma-reporter
    reporters: ['dots'],


    // web server port
    port: 9876,


    // enable / disable colors in the output (reporters and logs)
    colors: true,


    // level of logging
    // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
    logLevel: config.LOG_ERROR,


    // enable / disable watching file and executing tests whenever any file changes
    autoWatch: false,


    // start these browsers
    // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
    browsers: ['ChromeHeadless', 'FirefoxHeadless'],


    // Continuous Integration mode
    // if true, Karma captures browsers, runs the tests and exits
    singleRun: true,

    // Concurrency level
    // how many browser should be started simultaneous
    concurrency: Infinity,

    // Custom web browsers
    customLaunchers: {
      FirefoxHeadless: {
        base: 'Firefox',
        flags: ['-headless']
      }
    },

    // Use TDD instead of BDD for Mocha
    client: {
      mocha: {
        ui: 'tdd'
      }
    }
  })
}