From 26829d2d2f9211fe6d33bc23503738a5cd980a53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Fri, 10 Jan 2025 13:46:39 +0100 Subject: [PATCH] Fix coverage. --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 597af11..add82a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,5 +16,9 @@ COPY . . # Build the application (if needed, adjust this step accordingly) RUN npm run build +# Move typeberry out of node_modules to allow the fuzzer to collect coverage. +RUN cp -r ./node_modules/@typeberry/pvm-debugger-adapter typeberry +RUN npm link ./typeberry + # Start the application CMD ["npm", "run", "fuzz"]