add fuzzySearch

This commit is contained in:
Rohit Tanwar
2018-02-17 21:52:36 +05:30
parent 324bd72a49
commit 0eda135fca
4 changed files with 1075 additions and 1004 deletions

View File

@ -0,0 +1,13 @@
const test = require('tape');
const fuzzySearch = require('./fuzzySearch.js');
test('Testing fuzzySearch', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof fuzzySearch === 'function', 'fuzzySearch is a Function');
//t.deepEqual(fuzzySearch(args..), 'Expected');
//t.equal(fuzzySearch(args..), 'Expected');
//t.false(fuzzySearch(args..), 'Expected');
//t.throws(fuzzySearch(args..), 'Expected');
t.end();
});