move hint component
This commit is contained in:
parent
9f2dcde566
commit
890f84c343
5 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
import * as followActions from 'content/actions/follow';
|
import * as followActions from 'content/actions/follow';
|
||||||
import messages from 'shared/messages';
|
import messages from 'shared/messages';
|
||||||
import Hint from 'content/hint';
|
import Hint from './hint';
|
||||||
import HintKeyProducer from 'content/hint-key-producer';
|
import HintKeyProducer from 'content/hint-key-producer';
|
||||||
|
|
||||||
const DEFAULT_HINT_CHARSET = 'abcdefghijklmnopqrstuvwxyz';
|
const DEFAULT_HINT_CHARSET = 'abcdefghijklmnopqrstuvwxyz';
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import { expect } from "chai";
|
import { expect } from "chai";
|
||||||
import Hint from 'content/hint';
|
import Hint from 'content/components/hint';
|
||||||
|
|
||||||
describe('Hint class', () => {
|
describe('Hint class', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
document.body.innerHTML = __html__['test/content/hint.html'];
|
document.body.innerHTML = __html__['test/content/components/hint.html'];
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('#constructor', () => {
|
describe('#constructor', () => {
|
Reference in a new issue