
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
testing-library-selector
Advanced tools
Reusable selectors for @testing-library. Define selectors for ui elements that can be reused inside the same test or between tests. Full typescript support.
npm install --save-dev testing-library-selector
yarn add -D testing-library-selector
import { byLabelText, byRole, byTestId } from './selector';
// define reusable selectors
const ui = {
container: byTestId('my-container'),
submitButton: byRole('button', { name: 'Submit' }),
usernameInput: byLabelText('Username:'),
// can encode more specific html element type
passwordInput: byLabelText<HTMLInputElement>('Password:'),
};
// reuse them in the same test or across multiple tests by calling
// .get(), .getAll(), .find(), .findAll(), .query(), .queryAll()
it('example test', async () => {
// by default elements will be queried against screen
await ui.submitButton.find();
expect(ui.submitButton.query()).not.toBeInDocument();
expect(ui.submitButton.get()).toBeInDocument();
const containers = ui.container.getAll();
expect(containers).toHaveLength(3);
// provide a container as first param to query element inside that container
const username = ui.usernameInput.get(containers[0]);
});
FAQs
selectors for react testing library
The npm package testing-library-selector receives a total of 63,256 weekly downloads. As such, testing-library-selector popularity was classified as popular.
We found that testing-library-selector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.