Sha256: 81d576e471daf4b982abefe0eb3160d342815114d5a72cb5395b46122e5c515e
Contents?: true
Size: 436 Bytes
Versions: 89
Compression:
Stored size: 436 Bytes
Contents
import { filterAccounts } from '../AccountListHelper'; import { accounts } from '../AccountList.fixtures'; describe('AccountList helpers', () => { it('account ids filter should return all accounts where label contains "test"', () => { expect(filterAccounts(accounts, 'AcCoUnT')).toEqual(accounts); }); it('account ids filter should not match', () => { expect(filterAccounts(accounts, 'no_match')).toEqual({}); }); });
Version data entries
89 entries across 89 versions & 1 rubygems