mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 01:24:05 -08:00
26 lines
472 B
TypeScript
26 lines
472 B
TypeScript
|
import { filterSortSearchListItems } from '../../v2/helpers/utils';
|
||
|
|
||
|
describe('Test MicrosoftTeamsV2, filterSortSearchListItems', () => {
|
||
|
it('should filter, sort and search list items', () => {
|
||
|
const items = [
|
||
|
{
|
||
|
name: 'Test1',
|
||
|
value: 'test1',
|
||
|
},
|
||
|
{
|
||
|
name: 'Test2',
|
||
|
value: 'test2',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
const result = filterSortSearchListItems(items, 'test1');
|
||
|
|
||
|
expect(result).toEqual([
|
||
|
{
|
||
|
name: 'Test1',
|
||
|
value: 'test1',
|
||
|
},
|
||
|
]);
|
||
|
});
|
||
|
});
|