Update
This commit is contained in:
1 parent
4f15788983
commit
eaabb7cc65
36 files changed
+2116
-80
No files matched your search
+18
@@ -0,0 +1,18 @@
|
||||
var assert = require('better-assert');
|
||||
|
||||
describe('filter', function(){
|
||||
it('Should contain property object', function(){
|
||||
var list = require('../lib/index');
|
||||
assert(list.hasOwnProperty('object'));
|
||||
});
|
||||
|
||||
it('Should contain property array', function(){
|
||||
var list = require('../lib/index');
|
||||
assert(list.hasOwnProperty('array'));
|
||||
});
|
||||
|
||||
it('Should contain property regex', function(){
|
||||
var list = require('../lib/index');
|
||||
assert(list.hasOwnProperty('regex'));
|
||||
});
|
||||
});
|
||||
Reference in new issue
Block a user