fix: move components tests to specs folder

This commit is contained in:
Marcus Efraimsson
2017-12-07 17:30:54 +01:00
parent 87ceeb0898
commit 10b0fc79f3
2 changed files with 3 additions and 3 deletions
@@ -1,5 +1,5 @@
import { SearchCtrl } from './search';
import { SearchSrv } from 'app/core/services/search_srv';
import { SearchCtrl } from '../components/search/search';
import { SearchSrv } from '../services/search_srv';
describe('SearchCtrl', () => {
const searchSrvStub = {
@@ -1,4 +1,4 @@
import { SearchResultsCtrl } from './search_results';
import { SearchResultsCtrl } from '../components/search/search_results';
describe('SearchResultsCtrl', () => {
let ctrl;