Skip to content

Commit

Permalink
Clean non-copyable bash
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz committed Mar 7, 2019
1 parent 2682148 commit f824caf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions documentation/HandsOnPropertyBased.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export const sort = <T>(tab: T[]): T[] => {
Install a test framework:

```bash
:-$ npm install --save-dev jest ts-jest @types/jest
:-$ mkdir specs ; touch specs/sort.spec.ts
npm install --save-dev jest ts-jest @types/jest
mkdir specs ; touch specs/sort.spec.ts
```

Edit `package.json` to configure the test framework:
Expand All @@ -95,7 +95,7 @@ Edit `package.json` to configure the test framework:
Install fast-check:

```bash
:-$ npm install --save-dev fast-check
npm install --save-dev fast-check
```

The algorithm under test is an integer sorting algorithm. Basically here are some of the properties we might come with:
Expand Down

0 comments on commit f824caf

Please sign in to comment.