move util back out of test dir

This commit is contained in:
Ladd Hoffman 2024-12-25 19:32:02 -06:00
parent 9d9a1e1f08
commit 4f6dcf3d15
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
import {App} from "../util/app";
import {App} from "../../util/app";
describe('Run', () => {
let app: App;

View File

@ -1,5 +1,5 @@
import Debug from 'debug';
import {App} from '../util/app';
import {App} from '../../util/app';
const debug = Debug('test:two');
describe('Run', () => {

View File

@ -1,5 +1,5 @@
import {RhizomeNode, RhizomeNodeConfig} from "../../src/node";
import {TypedCollection} from "../../src/typed-collection";
import {RhizomeNode, RhizomeNodeConfig} from "../src/node";
import {TypedCollection} from "../src/typed-collection";
type User = {
id?: string;