fix imports in test
This commit is contained in:
parent
c5e9a3d35d
commit
5ef9a2a60c
15 changed files with 24 additions and 24 deletions
|
@ -1,5 +1,5 @@
|
|||
import { expect } from "chai";
|
||||
import HintKeyProducer from '../../src/content/hint-key-producer';
|
||||
import HintKeyProducer from 'content/hint-key-producer';
|
||||
|
||||
describe('HintKeyProducer class', () => {
|
||||
describe('#constructor', () => {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { expect } from "chai";
|
||||
import Hint from '../../src/content/hint';
|
||||
import Hint from 'content/hint';
|
||||
|
||||
describe('Hint class', () => {
|
||||
beforeEach(() => {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { expect } from "chai";
|
||||
import * as navigates from '../../src/content/navigates';
|
||||
import * as navigates from 'content/navigates';
|
||||
|
||||
describe('navigates module', () => {
|
||||
describe('#linkPrev', () => {
|
||||
|
|
Reference in a new issue