diff --git a/docs/docs/setupCypress.md b/docs/docs/setupCypress.md index 55866be59..5324f06d9 100644 --- a/docs/docs/setupCypress.md +++ b/docs/docs/setupCypress.md @@ -93,6 +93,7 @@ Here's an optimized example of how to write tests using Cypress with Synpress in // - Interacting with smart contracts // - Testing dapp-specific functionality }) + }) ``` ## Running Tests diff --git a/docs/docs/typescript.md b/docs/docs/typescript.md index 560ad000e..e4723ca67 100644 --- a/docs/docs/typescript.md +++ b/docs/docs/typescript.md @@ -11,4 +11,10 @@ Synpress offers comprehensive TypeScript support, being built with TypeScript an To ensure optimal functionality and type checking, configure your TypeScript compiler with the `strict` option enabled. Update your `tsconfig.json` as follows: -::: code-group +```json +{ + "compilerOptions": { + "strict": true + } +} +```