Remove outdated tests

This commit is contained in:
wpetit 2020-04-20 12:00:51 +02:00
parent 364840c665
commit 0a98e32a83
3 changed files with 0 additions and 36 deletions

View File

@ -1,21 +0,0 @@
// Mock Browser API's which are not supported by JSDOM, e.g. ServiceWorker, LocalStorage
/**
* An example how to mock localStorage is given below 👇
*/
/*
// Mocks localStorage
const localStorageMock = (function() {
let store = {};
return {
getItem: (key) => store[key] || null,
setItem: (key, value) => store[key] = value.toString(),
clear: () => store = {}
};
})();
Object.defineProperty(window, 'localStorage', {
value: localStorageMock
}); */

View File

@ -1,3 +0,0 @@
// This fixed an error related to the CSS and loading gif breaking my Jest test
// See https://facebook.github.io/jest/docs/en/webpack.html#handling-static-assets
export default "test-file-stub";

View File

@ -1,12 +0,0 @@
import { h } from "preact";
// See: https://github.com/mzgoddard/preact-render-spy
import { shallow } from "preact-render-spy";
import Header from "../components/header";
describe("Initial Test of the Header", () => {
test("Header renders 3 nav items", () => {
const context = shallow(<Header />);
expect(context.find("h1").text()).toBe("Preact App");
expect(context.find("Link").length).toBe(3);
});
});