Fixed a typo.

This commit is contained in:
Arctichawk1 2021-03-29 19:40:43 -04:00
parent d1d1abe22a
commit 340663e739
3 changed files with 19 additions and 0 deletions

View file

View file

@ -0,0 +1,9 @@
import React, { Component } from "react";
class AgentPage extends Component {
render() {
return <div>AgentPage</div>;
}
}
export default AgentPage;

View file

@ -0,0 +1,10 @@
import React from "react";
import { shallow } from "enzyme";
import AgentPage from "./agent-page";
describe("AgentPage", () => {
test("matches snapshot", () => {
const wrapper = shallow(<AgentPage />);
expect(wrapper).toMatchSnapshot();
});
});