diff --git a/src/ItemViewAppBar.test.js b/src/ItemViewAppBar.test.js
deleted file mode 100644
index 4218681..0000000
--- a/src/ItemViewAppBar.test.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import React from "react";
-import { render, unmountComponentAtNode} from "react-dom";
-import { act } from "react-dom/test-utils";
-
-import ItemViewAppBar from "./ItemViewAppBar";
-
-let container = null;
-beforeEach(() => {
- //Setup a DOM element as a render target
- container = document.createElement("div");
- document.body.appendChild(container);
-});
-
-afterEach(() => {
- unmountComponentAtNode(container);
- container.remove();
- container = null;
-});
-
-it("renders only with a title", () =>{
- act(() => {
- render(, container);
- })
- expect(container.ItemViewAppBar).toBe(null);
-})
\ No newline at end of file
diff --git a/src/components/ItemViewAppBar/ItemViewAppBar.js b/src/components/ItemViewAppBar/ItemViewAppBar.js
index 9ae4957..448e626 100644
--- a/src/components/ItemViewAppBar/ItemViewAppBar.js
+++ b/src/components/ItemViewAppBar/ItemViewAppBar.js
@@ -19,6 +19,7 @@ export default function ItemViewAppBar(props){
return(
<>
+
+
>
);
}