Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 39ad46...5c2c02 )
by Sebastian
16s
created

plugins/pageview/tests/karma.conf.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 19
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
c 0
b 0
f 0
nc 1
dl 0
loc 19
rs 10
wmc 1
mnd 0
bc 1
fnc 1
bpm 1
cpm 1
noi 0
1
/**
2
 * (c) Kitodo. Key to digital objects e.V. <[email protected]>
3
 *
4
 * This file is part of the Kitodo and TYPO3 projects.
5
 *
6
 * @license GNU General Public License version 3 or later.
7
 * For the full copyright and license information, please read the
8
 * LICENSE.txt file that was distributed with this source code.
9
 */
10
11
module.exports = function(config) {
12
    config.set({
13
        frameworks: ['jasmine'],
14
        files: [
15
            // external libraries
16
            '../node_modules/jquery/dist/jquery.js',
17
            '../../../lib/OpenLayers/ol3-dlf.js',
18
19
            // test specifications
20
            'spec/*.js',
21
22
            // files to test
23
            '../tx_dlf_altoparser.js',
24
            '../tx_dlf_ol3_source.js',
25
            '../tx_dlf_utils.js'
26
        ],
27
        browsers: ['PhantomJS']
28
    });
29
};
30