/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/randomize/__tests__/hooks.test.js
98 строк
2 KB
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. */ beforeAll(() => { process.stdout.write('This is before all\n'); }); beforeEach(() => { process.stdout.write('This is before each\n'); }); afterEach(() => { process.stdout.write('This is after each\n'); }); afterAll(() => { process.stdout.write('This is after all\n'); }); it('test1', () => { process.stdout.write('test1\n'); }); it('test2', () => { process.stdout.write('test2\n'); }); it('test3', () => { process.stdout.write('test3\n'); }); describe('describe1', () => { it('test4', () => { process.stdout.write('test4\n'); }); it('test5', () => { process.stdout.write('test5\n'); }); it('test6', () => { process.stdout.write('test6\n'); }); }); describe('describe2', () => { afterAll(() => { process.stdout.write('This is after all describe2\n'); }); it('test7', () => { process.stdout.write('test7\n'); }); it('test8', () => { process.stdout.write('test8\n'); }); it('test9', () => { process.stdout.write('test9\n'); }); }); describe('describe3', () => { beforeEach(() => { process.stdout.write('This is before each describe3\n'); }); it('test10', () => { process.stdout.write('test10\n'); }); it('test11', () => { process.stdout.write('test11\n'); }); it('test12', () => { process.stdout.write('test12\n'); }); describe('describe4', () => { it('test13', () => { process.stdout.write('test13\n'); }); it('test14', () => { process.stdout.write('test14\n'); }); it('test15', () => { process.stdout.write('test15\n'); }); }); });