vcc-ui
Version:
VCC UI is a collection of React UI Components that can be used for developing front-end applications at Volvo Car Corporation.
9 lines • 361 B
JavaScript
import React from "react";
import { Click } from ".";
import createSnapshot from "../../test/create-snapshot";
describe("<Click /> snapshot tests", function () {
it("renders <Click /> correctly with default props", function () {
var snapshot = createSnapshot(React.createElement(Click, null, "Children"));
expect(snapshot).toMatchSnapshot();
});
});