
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
@deploysentinel/jest-rtl-debugger
Advanced tools
Enables viewing/debugging Jest runs from remote environments (ex. CI) with debug information you're used to having locally.
Enables viewing/debugging Jest runs from remote environments (ex. CI) with debug information you're used to having locally.
Install the jest plugin into your jest project.
npm install -D @deploysentinel/jest-rtl-debugger
In your jest config file (ex. jest.config.js
) add:
(currently, only jest version 27
, 28
and 29
are supported)
module.exports = {
testEnvironment: '@deploysentinel/jest-rtl-debugger/environment',
setupFilesAfterEnv: ['<rootDir>/setup-jest.js'],
globalSetup: '@deploysentinel/jest-rtl-debugger/globalSetup', // optional
...
};
In your setup file (ex. setup-jest.js
) add:
const setup = require('@deploysentinel/jest-rtl-debugger/setup');
setup();
transform
to transform CSSIn your jest config file (ex. jest.config.js
) add:
module.exports = {
transform: {
'^.+\\.(css|scss|sass|less)$':
'@deploysentinel/jest-rtl-debugger/transforms/css',
},
};
Lastly, export your API key to an OS environment variable DEPLOYSENTINEL_API_KEY
You can grab your API key by logging into/signing up for DeploySentinel and visiting your profile page: https://deploysentinel.com/profile.
DEPLOYSENTINEL_API_KEY=YOUR_API_KEY
By default, the debugger only uploads failed tests artifacts. You can force artifacts upload by setting DEPLOYSENTINEL_UPLOAD_ON_PASSES
environment variable to 1
, yes
or true
DEPLOYSENTINEL_UPLOAD_ON_PASSES=1 ('1', 'yes' or 'true')
You can set DEPLOYSENTINEL_LOG_VERBOSE
to log debugger error stdout
DEPLOYSENTINEL_LOG_VERBOSE=1 ('1', 'yes' or 'true')
FAQs
Enables viewing/debugging Jest runs from remote environments (ex. CI) with debug information you're used to having locally.
The npm package @deploysentinel/jest-rtl-debugger receives a total of 28 weekly downloads. As such, @deploysentinel/jest-rtl-debugger popularity was classified as not popular.
We found that @deploysentinel/jest-rtl-debugger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.