fix: emend the imports in the test files

This commit is contained in:
Michel Jonathan Schmitz
2019-06-05 16:32:41 +02:00
parent 23cbc53fef
commit 53e80476c8
3 changed files with 8 additions and 8 deletions

View File

@@ -17,10 +17,10 @@ import {resolve} from 'path';
import {existsSync, unlinkSync} from 'fs';
import {slow, suite, test, timeout} from 'mocha-typescript';
import {getProjectReflection} from '../src/common';
import {createDiagram, createDiagramFromString} from '../src/uml/createDiagram';
import {UMLConfig} from './../lib/uml/umlConfig.d';
import {readDefinitions} from '../src/uml/readDefinitions';
import {LightweightDefinition} from '../src/uml/model/LightweightDefinition';
import {createDiagram, createDiagramFromString} from '../src/uml/create-diagram';
import {UMLConfig} from '../src/uml/uml-config';
import {readDefinitions} from '../src/uml/read-definitions';
import {LightweightDefinition} from '../src/uml/model/lightweight-definition';
import nock = require('nock');
@suite(timeout(15000), slow(5000))