mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
Extracts phrase_match to common.js so it can be used by other components like integrations search.
19 lines
502 B
JavaScript
19 lines
502 B
JavaScript
zrequire('common');
|
|
|
|
set_global('$', global.make_zjquery());
|
|
|
|
run_test('basics', () => {
|
|
common.autofocus('#home');
|
|
assert($('#home').is_focused());
|
|
});
|
|
|
|
run_test('phrase_match', () => {
|
|
assert(common.phrase_match('tes', 'test'));
|
|
assert(common.phrase_match('Tes', 'test'));
|
|
assert(common.phrase_match('Tes', 'Test'));
|
|
assert(common.phrase_match('tes', 'Stream Test'));
|
|
|
|
assert(!common.phrase_match('tests', 'test'));
|
|
assert(!common.phrase_match('tes', 'hostess'));
|
|
});
|