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.
Test Failed
Push — master ( 8bf51e...98f146 )
by Dennis
02:07
created

index.tests.js ➔ describe(ꞌVanillaFilterꞌ)   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 1
Metric Value
cc 1
c 1
b 1
f 1
nc 1
nop 0
dl 0
loc 8
rs 9.4285

1 Function

Rating   Name   Duplication   Size   Complexity  
A index.tests.js ➔ ... ➔ it(ꞌshould create a VanillaFilter instance with an "options" propertyꞌ) 0 6 1
1
var chai = require('chai');
2
var assert = chai.assert;
3
var expect = chai.expect;
4
var vf = require('../src/scripts/vanillafilter');
5
6
describe('VanillaFilter', function() {
7
	it('should create a VanillaFilter instance with an "options" property', function() {
8
		var VF = new VanillaFilter();
0 ignored issues
show
Bug introduced by
The variable VanillaFilter seems to be never declared. If this is a global, consider adding a /** global: VanillaFilter */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
9
10
		assert.isObject(VF, 'VanillaFilter instance is an object');
11
		assert.isObject(VF.options, 'VanillaFilter.options is an object');
12
	});
13
});
14
15