Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanpowell88 committed Jun 26, 2024
1 parent dbbb9f1 commit 9f7ae13
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions docs/advanced-techniques.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,6 @@ use guards can either be global or more granular. We only want to apply the
guard to the `reset()` method, so we can use the `@UseGuards()` decorator and
pass the `TestOnlyGuard` as a parameter to it:

a

```ts
@UseGuards(TestEnvOnlyGuard)
@Post('/reset')
Expand Down
2 changes: 1 addition & 1 deletion docs/crud.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ it("should get single mission", () => {
cy.get("@response").its("status").should("equal", 200);
cy.get("@response").its("body").should("include", {
id: 1,
description: "take out the trash",
description: "save the galaxy",
complete: false,
});
});
Expand Down

0 comments on commit 9f7ae13

Please sign in to comment.