# typescript-mocha-strict-null-checks **Repository Path**: mirrors_dblock/typescript-mocha-strict-null-checks ## Basic Information - **Project Name**: typescript-mocha-strict-null-checks - **Description**: Demonstrate TypeScript + mocha strictNullChecks not playing well together. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Demonstrate `strictNullChecks` with mocha. ``` mkdir typescript-mocha cd typescript-mocha tsc --init npm init mkdir src mkdir test # create src/spline.ts and test/spline.spec.ts npm install mocha @types/mocha --save-dev npm install chai @types/chai --save-dev npm install ts-node --save-dev add `./node_modules/.bin/mocha -r ts-node/register test/**/*.spec.ts` to package.json's test command npm run test ```