![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Automatically generate minimal spec files for Javascript modules. Works well with Jest snapshots to make painless tests. For example, given a test file src/components/Button.jsx
,
import React from 'react';
class Button extends React.Component {
static propTypes = {
level: React.PropTypes.oneOf([
'primary', 'secondary', 'tertiary', 'quaternary', 'text', 'icon',
]),
disabled: React.PropTypes.bool,
label: React.PropTypes.string.isRequired,
height: React.PropTypes.number,
children: React.PropTypes.element.isRequired,
};
render() {
return (
<button disabled={this.props.disabled}>
<b>{this.props.label}</b>
</button>
);
}
}
export default Button;
it will generate src/components/__tests__/Button-test.js
:
/* @lazyspec (remove to manage manually) */
/* eslint-disable */
import Button from '../Button.js';
import React from 'react';
import renderer from 'react-test-renderer';
describe('Button', () => {
it('exists', () => {
expect(Button).toBeTruthy();
});
it('renders', () => {
const comp = <Button children="mockElement" label="mockString" />;
const tree = renderer.create(comp).toJSON();
expect(tree).toMatchSnapshot();
});
});
npm install -g lazyspec
lazyspec path/to/fileOrDir
For every dir in the list, it will glob all the .js
and .jsx
.js
and add them.
For each file, it will generate a spec and the __tests__
dir if necessary. So far it only supports the Jest style layout but PRs for other test runners and layouts are welcomed!
In dev you can do, ./src/cli.js path/to/fileOrDir
.
Required props of functional stateless components aren't detected
Custom proptypes are never interpreted as required (e.g. message: MessageInterfacePropType.isRequired
)
Fails when more than one component is exported from a module. react-docgen now has findAllExportedComponentDefinitions
, but we don't use it because modules often export a HOC and its base component so it would be redundant. Eventually this tool could detect which is the HOC and omit it.
FAQs
Generate minimal unit tests automatically
We found that lazyspec 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.