
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
This is a helper project which allows you to run screenshot tests for your React Native Storybook project.
This project depends on having detox and storybook running in your project. You can read more about Detox and about Storybook
This project generates a directory with images from Storybook. Detecting changes in them is outside of scope for this module.
npm install rnsst
Then create storybook.spec.js file in your detox tests.
const config = {
port: 7007, // Optional port to run storybook server on, default is 7007
runner: 'mocha' | 'jest', // Optional, default is mocha
worker: 1, // Optional, leave empty if you are not using multiple Detox workers
totalWorkers: 3, // Optional, leave empty if you are not using multiple Detox workers
captureDirectory: './screenshots', // Optional, screenshots are left in Detox artifacts directory if not set
};
require('rnsst')(config, async () => {
/* ...optional function to call before running screenshot tests, can be useful to navigate to storybook */
});
Important: Storybook UI should be the only visible thing on the screen. Also make sure to hide status bar, so the clock does not break screenshot testing.
Then simply run detox tests.
This library works by setting up a websocket server and channel with your running storybook project. This way inside the tests we can retrieve story list and then run the tests on it.
!
as your first letter in story name to skip the story.detox test PATH_TO_storybook.spec.js
.Contributions, issues and feature requests are welcome!
Feel free to check issues page.
This project is MIT licensed.
FAQs
React Native Storybook Screeshot Tests with Detox
The npm package rnsst receives a total of 207 weekly downloads. As such, rnsst popularity was classified as not popular.
We found that rnsst 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.