~holger-seelig/cobweb.js/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Karma configuration for unit tests, common part.
 * New configuration file syntax : Karma >= 0.10
 * 
 * (c) 2013-2014, RĂ©mi Turboult
 * All rights reserved.
 * Distributed under the 3-clause BSD License, see LICENSE.txt
 */


'use strict';

module.exports = {
    basePath: '../',
    frameworks: ['jasmine', 'browserify'],
    singleRun: true,
    files: [
        {pattern: 'tests/data/**/*', included: false}
    ],
    preprocessors: {
        "/**/*.browserify": "browserify"
    },
    browserify: {
        files: [
            'tests/spec/*.js'
        ]
    },
    browserNoActivityTimeout: 15000
    //logLevel: "LOG_DEBUG",
};