alsatian-enzyme
v1.0.1
Published
Helpers for testing React in TypeScript with Enzyme and Alsatian
Downloads
48
Readme
alsatian-enzyme
This package provides helpers for testing React components in Typescript with Enzyme and Alsatian.
Installation
npm i alsatian-enzyme
Usage
import { Test, TestFixture } from "alsatian";
import { ExpectElement } from "alsatian-enzyme";
import { shallow } from "enzyme";
import { MyComponent } from "./MyComponent";
@TestFixture("MyComponent")
export class MyComponentTests {
@Test("should render component")
public shouldRenderComponent() {
const wrapper = shallow(<MyComponent />);
ExpectElement(wrapper).toMatchElement(
<div>
My components body.
</div>
);
}
}
License
Made with :sparkling_heart: by NewOrbit in Oxfordshire, and licensed under the MIT Licence