~holger-seelig/cobweb.js/trunk

« back to all changes in this revision

Viewing changes to src/lib/poly2tri.js/tests/karma.common.js

  • Committer: Holger Seelig
  • Date: 2017-08-22 04:53:24 UTC
  • Revision ID: holger.seelig@yahoo.de-20170822045324-4of4xxgt79669gbt
Switched to npm.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Karma configuration for unit tests, common part.
 
3
 * New configuration file syntax : Karma >= 0.10
 
4
 * 
 
5
 * (c) 2013-2014, Rémi Turboult
 
6
 * All rights reserved.
 
7
 * Distributed under the 3-clause BSD License, see LICENSE.txt
 
8
 */
 
9
 
 
10
 
 
11
'use strict';
 
12
 
 
13
module.exports = {
 
14
    basePath: '../',
 
15
    frameworks: ['jasmine', 'browserify'],
 
16
    singleRun: true,
 
17
    files: [
 
18
        {pattern: 'tests/data/**/*', included: false}
 
19
    ],
 
20
    preprocessors: {
 
21
        "/**/*.browserify": "browserify"
 
22
    },
 
23
    browserify: {
 
24
        files: [
 
25
            'tests/spec/*.js'
 
26
        ]
 
27
    },
 
28
    browserNoActivityTimeout: 15000
 
29
    //logLevel: "LOG_DEBUG",
 
30
};
 
31
 
 
32