Exemplo n.º 1
0
  test('returns string if no match', function (assert) {
    assert.expect(1);

    assert.equal(fuzzyMatch('abc', 'z'), 'abc');
  });
Exemplo n.º 2
0
  test('returns modified string if fuzzy match', function (assert) {
    assert.expect(1);

    assert.equal(fuzzyMatch('travis-web', 'tavw', '<', '>'), '<t>r<av>is-<w>eb');
  });