Skip to content

Commit 212e94c

Browse files
authored
📝 Drop link to rescript-fast-check (#5849)
The package doesn't seem to be maintained anymore. I prefer dropping it from our official recommendations.
1 parent b5f8393 commit 212e94c

File tree

2 files changed

+0
-36
lines changed

2 files changed

+0
-36
lines changed

packages/fast-check/README.md

-4
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,6 @@ Here are the minimal requirements to use fast-check properly without any polyfil
133133

134134
</details>
135135

136-
### ReScript bindings
137-
138-
Bindings to use fast-check in [ReScript](https://rescript-lang.org) are available in package [rescript-fast-check](https://www.npmjs.com/rescript-fast-check). They are maintained by [@TheSpyder](https://github.com/TheSpyder) as an external project.
139-
140136
## Contributors ✨
141137

142138
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

website/docs/ecosystem.md

-32
Original file line numberDiff line numberDiff line change
@@ -453,35 +453,3 @@ External libraries leveraging fast-check, its properties and predicates to valid
453453
454454
Make sure your [fp-ts](https://gcanti.github.io/fp-ts/) constructs are properly configured.
455455
More details on the [package itself](https://www.npmjs.com/package/fp-ts-laws)!
456-
457-
## Other stacks
458-
459-
Wanna run fast-check in non-JavaScript environments? The following packages offer some bindings making it possible.
460-
461-
### `rescript-fast-check` ⚠️
462-
463-
![npm version](https://badge.fury.io/js/rescript-fast-check.svg)
464-
![monthly downloads](https://img.shields.io/npm/dm/rescript-fast-check)
465-
![last commit](https://img.shields.io/github/last-commit/TheSpyder/rescript-fast-check)
466-
![license](https://img.shields.io/npm/l/rescript-fast-check.svg)
467-
![third party package](https://img.shields.io/badge/-third%20party%20package-%2300abff.svg)
468-
469-
Run fast-check from [ReScript](https://rescript-lang.org/) code.
470-
471-
```re
472-
open FastCheck
473-
open Arbitrary
474-
open Property.Sync
475-
476-
describe("properties", () => {
477-
it("should detect the substring", () =>
478-
assert_(
479-
property3(string(), string(), string(), (a, b, c) =>
480-
contains(a ++ b ++ c, b)
481-
),
482-
)
483-
)
484-
})
485-
```
486-
487-
More details on the [package itself](https://www.npmjs.com/package/rescript-fast-check)!

0 commit comments

Comments
 (0)