Fixed a typo.
This commit is contained in:
parent
ad8949e1b6
commit
b60b78ff0d
3 changed files with 0 additions and 19 deletions
|
@ -1,9 +0,0 @@
|
||||||
import React, { Component } from "react";
|
|
||||||
|
|
||||||
class AgentPage extends Component {
|
|
||||||
render() {
|
|
||||||
return <div>AgentPage</div>;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default AgentPage;
|
|
|
@ -1,10 +0,0 @@
|
||||||
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();
|
|
||||||
});
|
|
||||||
});
|
|
Loading…
Reference in a new issue