All Projects → Shmew → Fable.Jester

Shmew / Fable.Jester

Licence: MIT License
Fable bindings for jest and friends for delightful Fable testing.

Programming Languages

F#
602 projects

Projects that are alternatives of or similar to Fable.Jester

react-initial-bootstrap
an "almost complete" template for your new projects
Stars: ✭ 24 (-14.29%)
Mutual labels:  jest, react-testing-library
fuzz-rest-api
Derive property based testing fast-check into a fuzzer for REST APIs
Stars: ✭ 38 (+35.71%)
Mutual labels:  property-based-testing, fast-check
Expect More
Curried Type Testing library, and Test Matchers for Jest
Stars: ✭ 124 (+342.86%)
Mutual labels:  jest, property-based-testing
Batteries-Included-Next.js
A starting boilerplate for a TS Next.js project with batteries included. Tailwind CSS for styling, Jest and React Testing Library working with path aliases and node-mock-http for API route testing.
Stars: ✭ 35 (+25%)
Mutual labels:  jest, react-testing-library
glific-frontend
Frontend for the Glific platform
Stars: ✭ 18 (-35.71%)
Mutual labels:  jest, react-testing-library
medly-components
🧩 Medly components provides numerous themable react components, each with multiple varitaions of sizes, colors, position etc.
Stars: ✭ 66 (+135.71%)
Mutual labels:  jest, react-testing-library
Jest Dom
🦉 Custom jest matchers to test the state of the DOM
Stars: ✭ 2,908 (+10285.71%)
Mutual labels:  jest, react-testing-library
minesweeper
💣Minesweeper game written with React
Stars: ✭ 18 (-35.71%)
Mutual labels:  jest, react-testing-library
portfolio
My personal portfolio website, proudly built with Next.js, TypeScript and Tailwind
Stars: ✭ 165 (+489.29%)
Mutual labels:  jest, react-testing-library
awesome-address-book
This project shows a basic address book built with ReactJS, Redux Toolkit and Typescript 📖
Stars: ✭ 20 (-28.57%)
Mutual labels:  jest, react-testing-library
noov.js
📦 noov.js for react ssr solution
Stars: ✭ 18 (-35.71%)
Mutual labels:  jest
jest-pact
A Pact adaptor for to allow you to easily run tests with Jest
Stars: ✭ 58 (+107.14%)
Mutual labels:  jest
swagger-test
Property based testing tool for Swagger APIs
Stars: ✭ 32 (+14.29%)
Mutual labels:  property-based-testing
puppeteer-screenshot-tester
Small library that allows us to compare screenshots generated by puppeteer in our tests.
Stars: ✭ 50 (+78.57%)
Mutual labels:  jest
jest-preset-preact
Jest preset for testing Preact apps
Stars: ✭ 14 (-50%)
Mutual labels:  jest
jest-handbook-examples
Examples for The Jest Handbook
Stars: ✭ 14 (-50%)
Mutual labels:  jest
Feliz.Bulma
Bulma UI (https://bulma.io) wrapper for amazing Feliz DSL
Stars: ✭ 57 (+103.57%)
Mutual labels:  fable
reducer-tester
Utilities for testing redux reducers
Stars: ✭ 19 (-32.14%)
Mutual labels:  jest
jest-wrap
Fluent pluggable interface for easily wrapping `describe` and `it` blocks in Jest tests.
Stars: ✭ 35 (+25%)
Mutual labels:  jest
react-boilerplate
Sets the ground up for CRA-like projects.
Stars: ✭ 23 (-17.86%)
Mutual labels:  jest

Fable.Jester Nuget Nuget Nuget Nuget

Fable bindings for jest and friends for delightful Fable testing:

A quick look:

Jest.describe("my tests", fun () ->
    Jest.test("water is wet", fun () ->
        Jest.expect("test").toBe("test")
        Jest.expect("test").not.toBe("somethingElse")
        Jest.expect("hi").toHaveLength(2)
        Jest.expect("hi").not.toHaveLength(3)
    )
    Jest.test.prop("Is positive", Arbitrary.ConstrainedDefaults.integer(1,100), fun i ->
        Jest.expect(i).toBeGreaterThan(0)
    )
)

Full documentation can be found here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].