From 310f8557a794bb94291cf8d5ef5f31d8258a3338 Mon Sep 17 00:00:00 2001 From: brownman <314539+brownman@users.noreply.github.com> Date: Thu, 15 Jul 2021 22:48:20 +0300 Subject: [PATCH] docs(examples): add missing module (#4018) Fixes the following error: > test/todo-management/todo.tests.ts:275:3 - error TS2582: Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`. Co-authored-by: brownman --- examples/basic-crud-application/server/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/basic-crud-application/server/package.json b/examples/basic-crud-application/server/package.json index c26837fa47..d7573ff77c 100644 --- a/examples/basic-crud-application/server/package.json +++ b/examples/basic-crud-application/server/package.json @@ -24,6 +24,7 @@ "uuid": "^8.3.2" }, "devDependencies": { + "@types/mocha": "^8.2.3", "@types/chai": "^4.2.16", "@types/uuid": "^8.3.0", "chai": "^4.3.4",