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.
Passed
Push — master ( 7d4f9b...4c84dc )
by Cedric
01:01
created

test/dummy.spec.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 9
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
c 1
b 0
f 0
nc 1
dl 0
loc 9
rs 10
wmc 2
mnd 0
bc 2
fnc 2
bpm 1
cpm 1
noi 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A dummy.spec.js ➔ describe(ꞌDummy testꞌ) 0 5 1
1
'use strict';
2
3
const expect = require('chai').expect;
4
5
describe('Dummy test', function () {
6
    it('should pass', function () {
7
        expect(true).to.be.true;
0 ignored issues
show
introduced by
The result of the property access to expect(true).to.be.true is not used.
Loading history...
8
    });
9
})
10