jsverify VS testy

Compare jsverify vs testy and see what are their differences.

jsverify

Write powerful and concise tests. Property-based testing for JavaScript. Like QuickCheck. (by jsverify)

testy

test helpers for more meaningful, readable, and fluent tests (by peterldowns)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
jsverify testy
5 3
1,666 34
0.1% -
1.8 5.1
about 3 years ago 3 months ago
JavaScript Go
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

jsverify

Posts with mentions or reviews of jsverify. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-14.
  • The 5 principles of Unit Testing
    2 projects | dev.to | 14 Sep 2023
    Libraries like JSVerify or Fast-Check offer essential tools to facilitate property-based testing.
  • Ask HN: What's your favorite software testing framework and why?
    15 projects | news.ycombinator.com | 21 May 2023
    I tend to use anything that offers property-testing, since tests are much shorter to write and uncover lots more hidden assumptions.

    My go-to choices per language are:

    - Python: Hypothesis https://hypothesis.readthedocs.io/en/latest (also compatible with PyTest)

    - Scala: ScalaCheck https://scalacheck.org (also compatible with ScalaTest)

    - Javascript/Typescript: JSVerify https://jsverify.github.io

    - Haskell: LazySmallCheck2012 https://github.com/UoYCS-plasma/LazySmallCheck2012/blob/mast...

    - When I wrote PHP (over a decade ago) there was no decent property-based test framework, so I cobbled one together https://github.com/Warbo/php-easycheck

    All of the above use the same basic setup: tests can make universally-quantified statements (e.g. "for all (x: Int), foo(x) == foo(foo(x))"), then the framework checks that statement for a bunch of different inputs.

    Most property-checking frameworks generate data randomly (with more or less sophistication). The Haskell ecosystem is more interesting:

    - QuickCheck was one of the first property-testing frameworks, using random genrators.

    - SmallCheck came later, which enumerates data instead (e.g. testing a Float might use 0, 1, -1, 2, -2, 0.5, -0.5, etc.). That's cute, but QuickCheck tends to exercise more code paths with each input.

    - LazySmallCheck builds up test data on-demand, using Haskell's pervasive laziness. Tests are run with an error as input: if they pass, we're done; if they fail, we're done; if they trigger the error, they're run again with slightly more-defined inputs. For example, if the input is supposed to be a list, we try again with the two forms of list: empty and "cons" (the arguments to cons are both errors, to begin with). This exercises even more code paths for each input.

    - LazySmallCheck2012 is a more versatile "update" to LazySmallCheck; in particular, it's able to generate functions.

  • Property Based Testing Framework for Node
    2 projects | dev.to | 15 May 2022
    The usage of hypothesis is very intuitive and simple, and presents the concept of property-based testing perfectly. So I also wanted to find an equivalent alternative in Node. Two of them have high star ratings on Github, JSVerify with 1.6K stars and fast-check with 2.8K stars. So I took some time to study fast-check a little bit and try to get closer to my daily work.
  • Machine Readable Specifications at Scale
    4 projects | news.ycombinator.com | 26 Jan 2022
    Systems I've used for this include https://agda.readthedocs.io/en/v2.6.0.1/getting-started/what... https://coq.inria.fr https://www.idris-lang.org and https://isabelle.in.tum.de

    An easier alternative is to try disproving the statement, by executing it on thousands of examples and seeing if any fail. That gives us less confidence than a full proof, but can still be better than traditional "there exists" tests. This is called property checking or property-based testing. Systems I've used for this include https://hypothesis.works https://hackage.haskell.org/package/QuickCheck https://scalacheck.org and https://jsverify.github.io

  • React to Elm Migration Guide
    12 projects | dev.to | 25 Apr 2021
    Using create-react-app, you’ll run npm test which uses Jest internally. If you are dealing with a lot of data on the UI, or using TypeScript, use JSVerify for property tests. For end to end tests, Cypress is a great choice.

testy

Posts with mentions or reviews of testy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-05.
  • Russ Cox: Go Testing by Example
    8 projects | news.ycombinator.com | 5 Dec 2023
    Agreed with most of this but I’m skeptical of the rsc.io/script dsl approach. I’ll try it, though, because Russ is often right.

    shameless advert: do you wish testify was implemented with generics and go-cmp, and had a more understandable surface area? Check out my small zero-dep library, Testy https://github.com/peterldowns/testy

    shameless advert: do you want to write tests against your postgres database, but each new test adds seconds to your test suite? Check out pgtestdb, the marginal cost of each test is measured in tens of milliseconds, and each test gets a unique and isolated postgres instance — with all your migrations applied. https://github.com/peterldowns/pgtestdb

  • Show HN: Testy, a better Golang testing library
    1 project | news.ycombinator.com | 23 May 2023
  • Ask HN: What's your favorite software testing framework and why?
    15 projects | news.ycombinator.com | 21 May 2023
    Finished, take a look if you're curious --

    https://github.com/peterldowns/testy

What are some alternatives?

When comparing jsverify and testy you can also consider the following projects:

greenlight - Clojure integration testing framework

tricorder - Automation the KISS way

LazySmallCheck2012 - Lazy SmallCheck with functional values and existentials!

bats - Bash Automated Testing System

fast-check - Property based testing framework for JavaScript (like QuickCheck) written in TypeScript

embedded-postgres - Java embedded PostgreSQL component for testing

hitchstory - Type-safe YAML integration tests. Tests that write your docs. Tests that rewrite themselves.

datadriven - Data-Driven Testing for Go

php-easycheck - Mirror of http://chriswarbo.net/git/php-easycheck