Skip to content

Commit ff64da6

Browse files
docs(cli-plugin): fix code snippets
1 parent 46fe333 commit ff64da6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/openapi/cli-plugin.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,13 @@ In case `jest` does not seem to pick up your configuration changes, it's possibl
204204

205205
To clear the cache directory, run the following command in your NestJS project folder:
206206

207-
\```bash
207+
```bash
208208
$ npx jest --clearCache
209-
\```
209+
```
210210

211211
In case the automatic cache clearance fails, you can still manually remove the cache folder with the following commands:
212212

213-
\```bash
213+
```bash
214214
# Find jest cache directory (usually /tmp/jest_rs)
215215
# by running the following command in your NestJS project root
216216
$ npx jest --showConfig | grep cache
@@ -221,5 +221,5 @@ $ npx jest --showConfig | grep cache
221221
# Remove or empty the Jest cache directory
222222
$ rm -rf <cacheDirectory value>
223223
# ex:
224-
# rm -rf /tmp/jest_rs
225-
\```
224+
# rm -rf /tmp/jest_rs
225+
```

0 commit comments

Comments
 (0)