
Security News
OpenGrep Restores Fingerprinting in JSON and SARIF Outputs
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
@mojotech/prismatest-enzyme
Advanced tools
This adapter is used to interact with your test views using Enzyme.
Elements are interacted with using Enzyme's ReactWrapper class.
Selectors are specified using the Selector
class. This class wraps a function that takes the current
element that has been selected and may call methods on it to narrow down the
selection further. For example:
import { Selector } from '@mojotech/prismatest-enzyme';
new Selector(e => e.find('.cool-class'))
A helper function is provided that takes the same arguments as the find method on ReactWrapper instances. It is essentially just a wrapper around that method.
selector: (enzymeSelector) => SelectorType
Install
yarn install --dev @mojotech/prismatest-enzyme
Render something
import App from "./app";
import { mount } from "enzyme";
const rendered = mount(<App />);
Use some test views
import testView, { selector } from "@mojotech/prismatest-enzyme";
import TodoComponent from './todo-component';
const TodoView = testView(selector(TodoComponent), { addTodo: (e, text) => e.props().addTodo(text) });
const todo = TodoView.materialize(rendered);
todo.addTodo("Write some tests!");
FAQs
Enzyme adapter for use with @mojotech/prismatest
The npm package @mojotech/prismatest-enzyme receives a total of 2 weekly downloads. As such, @mojotech/prismatest-enzyme popularity was classified as not popular.
We found that @mojotech/prismatest-enzyme demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.