move util back out of test dir
This commit is contained in:
parent
9d9a1e1f08
commit
4f6dcf3d15
|
@ -1,4 +1,4 @@
|
||||||
import {App} from "../util/app";
|
import {App} from "../../util/app";
|
||||||
|
|
||||||
describe('Run', () => {
|
describe('Run', () => {
|
||||||
let app: App;
|
let app: App;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import Debug from 'debug';
|
import Debug from 'debug';
|
||||||
import {App} from '../util/app';
|
import {App} from '../../util/app';
|
||||||
const debug = Debug('test:two');
|
const debug = Debug('test:two');
|
||||||
|
|
||||||
describe('Run', () => {
|
describe('Run', () => {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {RhizomeNode, RhizomeNodeConfig} from "../../src/node";
|
import {RhizomeNode, RhizomeNodeConfig} from "../src/node";
|
||||||
import {TypedCollection} from "../../src/typed-collection";
|
import {TypedCollection} from "../src/typed-collection";
|
||||||
|
|
||||||
type User = {
|
type User = {
|
||||||
id?: string;
|
id?: string;
|
Loading…
Reference in New Issue