Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
isolated provides one-time folders for unit tests.
Category | Status |
---|---|
Version | |
Dependencies | |
Dev dependencies | |
Build | |
License |
$ npm install isolated
Using isolated is easy. All you need to do is to add a reference to it within your Node.js application:
const { isolated } = require('isolated');
If you use TypeScript, use the following code instead:
import { isolated } from 'isolated';
Then you can use it within your tests. In its simplest form, isolated provides a one-time folder for your test and guarantees to clean up later.
test('...', async () => {
const directory = await isolated();
});
Additionally, you may want to specify a file or a directory that isolated shall copy to the one-time directory before running your test.
test('...', async () => {
const directory = await isolated({
files: 'foo.txt'
});
});
If you need to copy multiple files or directories, specify an array instead of a single item.
test('...', async () => {
const directory = await isolated({
files: [ 'foo.txt', 'bar.txt' ]
});
});
Sometimes you may want isolate to preserve the sources' timestamps. For that additionally provide the preserveTimestamps
option and set it to true
.
test('...', async () => {
const directory = await isolated({
files: [ 'foo.txt', 'bar.txt' ],
preserveTimestamps: true
});
});
To build this module use roboter.
$ npx roboter
FAQs
isolated provides one-time folders for unit tests.
We found that isolated demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.