Viewing File: /usr/local/cpanel/3rdparty/share/angular-chosen/1.4.0/test/chosenOptions/searchContains.spec.js

describe('Chosen options: search-contains', function () {
  beforeEach(function () {
    chosenSelectHelper.compileWithAttributes({
      searchContains: true
    });

    chosenSelectHelper.searchInput().val('erma');
    chosenSelectHelper.searchInput().trigger('keyup.chosen');
  });

  it('finds a match in the search result that is not at the beginning of the option text', function () {
    expect(chosenSelectHelper.chosenResults().length).toBeTruthy();
  });
});
Back to Directory File Manager