/
githubmirror
/
docusaurus
Обзор
Документация
Войти
/
githubmirror
/
docusaurus
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
website/src/utils/__tests__/jsUtils.test.ts
18 строк
532 B
Sébastien Lorber
refactor(test): use explicit Vitest imports, disable globals (#12019)
15 май 2026, 11:01
Не верифицирован
15 май 2026, 11:01
057ab88
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import {describe, expect, it} from 'vitest'; import {toggleListItem} from '../jsUtils'; describe('toggleListItem', () => { it('removes item already in list', () => { expect(toggleListItem([1, 2, 3], 2)).toEqual([1, 3]); }); it('appends item not in list', () => { expect(toggleListItem([1, 2], 3)).toEqual([1, 2, 3]); }); });