| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 1 |
| 1 | var chai = require('chai'); |
||
| 7 | it('should create a VanillaFilter instance with an "options" property', function() { |
||
| 8 | var VF = new VanillaFilter(); |
||
|
|
|||
| 9 | |||
| 10 | assert.isObject(VF, 'VanillaFilter instance is an object'); |
||
| 11 | assert.isObject(VF.options, 'VanillaFilter.options is an object'); |
||
| 12 | }); |
||
| 13 | }); |
||
| 15 |
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.