/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/core/mode/test.js
15 строк
388 B
Ryan Cebulko
♻️ Migrate most of #core to pass TS typechecking (#37141)
09 дек 2021, 21:22
Не верифицирован
09 дек 2021, 21:22
58a1c29
Код
Авторство
О чём код?
import {isProd} from './prod'; /** * Returns true if executing in a testing environment. Calls may be DCE'd when * compiled based on isForDistribution. * @param {Window=} opt_win * @return {boolean} */ export function isTest(opt_win) { if (isProd()) { return false; } const win = opt_win || self; return !!(win.AMP_CONFIG?.test || win.__AMP_TEST || win['__karma__']); }