From 42af69d4c78b0a45ea3303fa7d3620061bc1b92a Mon Sep 17 00:00:00 2001 From: Simon Gaudek Date: Fri, 10 Jun 2022 09:51:57 +0200 Subject: [PATCH] Fix import --- test/schema.test.ts | 2 +- test/service.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/schema.test.ts b/test/schema.test.ts index ad45c3a..f8efe06 100644 --- a/test/schema.test.ts +++ b/test/schema.test.ts @@ -1,6 +1,6 @@ // This file should be compilable if the types were created correctly. -import { sap } from "../service"; +import { sap } from "./service"; const address: sap.capire.bookshop.IAddress = { street: "", diff --git a/test/service.test.ts b/test/service.test.ts index 281f892..db0ffba 100644 --- a/test/service.test.ts +++ b/test/service.test.ts @@ -1,6 +1,6 @@ // This file should be compilable if the types were created correctly. -import { CatalogService } from "../service"; +import { CatalogService } from "./service"; const serviceEntity: CatalogService.IServiceEntity = { id: "",