/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/coverage-with-projects/packages/server/server.js
16 строк
317 B
Ahn
fix: make coverage work when using `projects` option (#16140)
07 май 2026, 20:02
Не верифицирован
07 май 2026, 20:02
11fd5fc
Код
Авторство
О чём код?
/** * 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. */ function multiply(a, b) { return a * b; } function divide(a, b) { return a / b; } module.exports = {divide, multiply};