معرفی شرکت ها


@fast-check/worker-0.0.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Provide built-ins to run predicates directly within dedicated workers
ویژگی مقدار
سیستم عامل -
نام فایل @fast-check/worker-0.0.4
نام @fast-check/worker
نسخه کتابخانه 0.0.4
نگهدارنده ['ndubien']
ایمیل نگهدارنده ['npm@dubien.org']
نویسنده Nicolas DUBIEN
ایمیل نویسنده github@dubien.org
آدرس صفحه اصلی git+https://github.com/dubzzz/fast-check.git
آدرس اینترنتی https://github.com/dubzzz/fast-check/tree/main/packages/worker#readme
مجوز MIT
# `@fast-check/worker` Provide built-ins to run predicates directly within dedicated workers <a href="https://badge.fury.io/js/@fast-check%2Fworker"><img src="https://badge.fury.io/js/@fast-check%2Fworker.svg" alt="npm version" /></a> <a href="https://www.npmjs.com/package/@fast-check/worker"><img src="https://img.shields.io/npm/dm/@fast-check%2Fworker" alt="monthly downloads" /></a> <a href="https://github.com/dubzzz/fast-check/blob/main/packages/worker/LICENSE"><img src="https://img.shields.io/npm/l/@fast-check%2Fworker.svg" alt="License" /></a> --- ## Why? `fast-check` alone is great but what if it led your code into an infinite and synchronous loop for such inputs? In such case, it would neither be able to shrink the issue, nor to report any for you as the single threaded philosophy at the root of JavaScript will prevent it from anything except waiting for the main thread to come back. This package tends to provide a way to run easily your properties within dedicated workers automatically spawed by it. ## Example Here are some of the changes you will have to do: - hoist properties so that they get declared on the root scope - replace `fc.property` by `property` coming from `propertyFor(<path-to-file>)` - replace `fc.assert` by `assert` coming from `@fast-check/worker` for automatic cleaning of the workers as the test ends - transpilation has not been addressed yet but it may probably work - in theory, if you were only using `propertyFor` and `assert` without any external framework for `test`, `it` and others, the separation of the property from the assertion would be useless as the check for main thread is fully handled within `@fast-check/worker` itself so no hoisting needing in such case ```js import { test } from '@jest/globals'; import fc from 'fast-check'; import { isMainThread } from 'node:worker_threads'; import { assert, propertyFor } from '@fast-check/worker'; const property = propertyFor(new URL(import.meta.url)); // or propertyFor(pathToFileURL(__filename)) in commonjs const p1 = property(workerFileUrl, fc.nat(), fc.nat(), (start, end) => { // starting a possibly infinite loop for (let i = start; i !== end; ++i) { // doing stuff... } }); if (isMainThread) { test('should assess p1', async () => { await assert(p1, { timeout: 1000 }); }); } ``` Refer to the tests defined `test/main.spec.ts` for a living example of how you can use this package with a test runner such as Jest. ## Minimal requirements - Node ≥14.18.0<sup>(1)</sup><sup>(2)</sup> - TypeScript ≥4.1 (optional) _(1): `worker_threads` alone would only require Node ≥10.5.0, but our usage of `require(node:*)` forces us to request at least Node ≥14.18.0_ _(2): this package targets ES2020 specification which is quite well supported (more than 94%) by any Node ≥14.5.0_


نیازمندی

مقدار نام
^3.4.0 fast-check


زبان مورد نیاز

مقدار نام
18.12.1 Npm


نحوه نصب


نصب پکیج tgz @fast-check/worker-0.0.4:

    npm install @fast-check/worker-0.0.4.tgz