separate content

This commit is contained in:
Shin'ya Ueoka 2017-10-08 15:04:55 +09:00
parent d886d7de29
commit 39fb540037
17 changed files with 24 additions and 24 deletions

View file

@ -1,6 +1,6 @@
import { expect } from "chai";
import actions from 'actions';
import * as followActions from 'actions/follow';
import actions from 'content/actions';
import * as followActions from 'content/actions/follow';
describe('follow actions', () => {
describe('enable', () => {

View file

@ -1,6 +1,6 @@
import { expect } from "chai";
import actions from 'actions';
import * as inputActions from 'actions/input';
import actions from 'content/actions';
import * as inputActions from 'content/actions/input';
describe("input actions", () => {
describe("keyPress", () => {

View file

@ -1,10 +1,10 @@
import { expect } from "chai";
import FollowComponent from 'components/follow';
import FollowComponent from 'content/components/follow';
describe('FollowComponent', () => {
describe('#getTargetElements', () => {
beforeEach(() => {
document.body.innerHTML = __html__['test/components/follow.html'];
document.body.innerHTML = __html__['test/content/components/follow.html'];
});
it('returns visible links', () => {

View file

@ -1,6 +1,6 @@
import { expect } from "chai";
import actions from 'actions';
import followReducer from 'reducers/follow';
import actions from 'content/actions';
import followReducer from 'content/reducers/follow';
describe('follow reducer', () => {
it ('returns the initial state', () => {

View file

@ -1,6 +1,6 @@
import { expect } from "chai";
import actions from 'actions';
import inputReducer from 'reducers/input';
import actions from 'content/actions';
import inputReducer from 'content/reducers/input';
describe("input reducer", () => {
it('return the initial state', () => {