├── .cspell.json ├── .editorconfig ├── .github └── funding.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── LICENSE.md ├── README.md ├── package.json ├── src ├── main │ └── SingleContextNodeEnvironment.ts └── test │ ├── SingleContextNodeEnvironment.test.ts │ └── fakeTimers.test.ts └── tsconfig.json /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/.cspell.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | *.tgz 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/package.json -------------------------------------------------------------------------------- /src/main/SingleContextNodeEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/src/main/SingleContextNodeEnvironment.ts -------------------------------------------------------------------------------- /src/test/SingleContextNodeEnvironment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/src/test/SingleContextNodeEnvironment.test.ts -------------------------------------------------------------------------------- /src/test/fakeTimers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/src/test/fakeTimers.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayahr/jest-environment-node-single-context/HEAD/tsconfig.json --------------------------------------------------------------------------------