/
githubmirror
/
wp-calypso
Обзор
Документация
Войти
/
githubmirror
/
wp-calypso
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
client/lib/string/test/index.js
18 строк
493 B
Marin Atanasov
Framework: Refactor libs away from `chai` (#63751)
18 май 2022, 13:18
Не верифицирован
18 май 2022, 13:18
7e626af
Код
Авторство
О чём код?
import { areEqualIgnoringWhitespaceAndCase } from '../'; describe( 'lib/string/areEqualIgnoringWhitespaceAndCase', () => { test( 'should match', () => { const pairs = [ // actual, expected [ null, null ], [ '', '' ], [ 'hi there', 'Hi There' ], [ 'hithere', 'Hi There' ], [ 'hi-there', 'Hi There.' ], [ 'hi_there', 'Hi THERE' ], ]; pairs.forEach( ( pair ) => { expect( areEqualIgnoringWhitespaceAndCase( pair[ 0 ], pair[ 1 ] ) ).toBe( true ); } ); } ); } );