Skip to content
This repository has been archived by the owner on Apr 1, 2019. It is now read-only.

Commit

Permalink
Fix Tile test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marina Samuel committed Jan 28, 2016
1 parent 75c4b4f commit 8f826bc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/components/Tile.test.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
const assert = require("chai").assert;
const Tile = require("components/Tile/Tile");
const React = require("react");
const {combineReducers} = require("redux");
const ReactDOM = require("react-dom");
const {shouldConsoleError} = require('tests/test-utils');
const finalCreateStore = require("lib/finalCreateStore");

const reducers = require("reducers/index");
const reducer = combineReducers(reducers);
const store = finalCreateStore(reducer);

const fakeProps = {
title: "My tile",
imageURI: "https://foo.com/foo.jpg",
url: "https://foo.com"
url: "https://foo.com",
store
};

describe("Tile", () => {
Expand Down

0 comments on commit 8f826bc

Please sign in to comment.