separate content
This commit is contained in:
parent
d886d7de29
commit
39fb540037
17 changed files with 24 additions and 24 deletions
|
@ -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', () => {
|
|
@ -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", () => {
|
|
@ -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', () => {
|
|
@ -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', () => {
|
|
@ -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', () => {
|
Reference in a new issue