/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/test-environment-async/TestEnvironment.js
42 строки
1000 B
Simen Bekkhus
chore: enable node protocol in imports (#16077)
01 май 2026, 21:57
Не верифицирован
01 май 2026, 21:57
6886816
Код
Авторство
О чём код?
/** * 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. */ 'use strict'; const fs = require('node:fs'); const os = require('node:os'); const JSDOMEnvironment = require('jest-environment-jsdom').TestEnvironment; const {createDirectory} = require('jest-util'); const DIR = `${os.tmpdir()}/jest-test-environment`; class TestEnvironment extends JSDOMEnvironment { constructor(config, context) { super(config, context); this.context = context; } setup() { console.info('TestEnvironment.setup:', this.context.testPath); return super.setup().then(() => { this.global.setup = 'setup'; }); } teardown() { return super.teardown().then(() => { createDirectory(DIR); fs.writeFileSync(`${DIR}/teardown`, 'teardown'); }); } getVmContext() { return super.getVmContext(); } } module.exports = TestEnvironment;