blob: 6a10b7f9e417378a4670059e8dd583fb7ebe8caf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
import React from "react";
import { shallow } from "enzyme";
import Badge from "../Badge";
describe("Badge", () => {
it("render", () => expect(shallow(<Badge>{3}</Badge>)).toMatchSnapshot());
});
|