fix imports in test

This commit is contained in:
Shin'ya Ueoka 2017-10-05 20:12:08 +09:00
parent c5e9a3d35d
commit 5ef9a2a60c
15 changed files with 24 additions and 24 deletions

View file

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

View file

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

View file

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

View file

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

View file

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