
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@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
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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.