From 410e7b937dfd90528c304ec5a367bb1175f2818e Mon Sep 17 00:00:00 2001 From: Kwangsoo Yeo Date: Mon, 18 Dec 2023 17:55:00 -0800 Subject: [PATCH] fix test --- cypress/tsconfig.json | 3 ++- test/pv_file.test.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json index 926d6df..90ebded 100644 --- a/cypress/tsconfig.json +++ b/cypress/tsconfig.json @@ -5,5 +5,6 @@ "include": [ "**/*.ts", "../test/**/*.ts" - ] + ], + "extends": "../tsconfig.json" } diff --git a/test/pv_file.test.ts b/test/pv_file.test.ts index bc7e33e..518ca10 100644 --- a/test/pv_file.test.ts +++ b/test/pv_file.test.ts @@ -9,7 +9,7 @@ specific language governing permissions and limitations under the License. */ -import { fromPublicDirectory, open } from '../src'; +import { fromPublicDirectory, open } from '../'; const buildData = (size: number) => { const data = new Uint8Array(size);