/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/randomize/__tests__/each.test.js
28 строк
617 B
Josh
jest-circus runs children in shuffled order (#12922)
23 фев 2023, 15:19
Не верифицирован
23 фев 2023, 15:19
cbe0ac1
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ it.each([1, 2, 3])('test%d', () => { expect(true).toBe(true); }); describe.each([1, 2])('describe%d', () => { it.each([4, 5, 6])('test%d', () => { expect(true).toBe(true); }); }); describe('describe3', () => { it.each([10, 11, 12])('test%d', () => { expect(true).toBe(true); }); describe('describe4', () => { it.each([13, 14, 15])('test%d', () => { expect(true).toBe(true); }); }); });