A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/cometkim/rescript-vitest below:

cometkim/rescript-vitest: ReScript bindings to Vitest

ReScript bindings to Vitest

ReScript v10.1+ is required since v1.0.0. To use Js.Promise2 and async/await for tests.

ReScript v11.x with the uncurried mode is supported since v2.x.

Configure with plain vite.config.js.

You can use vite-plugin-rescript to build ReScript automatically before the test.

You can find examples on tests

open Vitest

describe("Hello, Vitest", () => {
  test("This is a test case", t => {
    // t is `expect` object for suite-wide assertions
    t->assertions(3)

    // Test using the `Expect` module
    t->expect(1 + 2)->Expect.toBe(3)

    // There are some nested modules for specific type
    t->expect([1, 2, 3])
    ->Expect.Array.toContain(2)

    t->expect("Hello, ReScript-Vitest!")
    ->Expect.String.toContain("ReScript")

  // You can specify timeout for a test suite
  }, ~timeout=2000)
})
In-source testing (experimental)

Vitest support in-source testing

// This if block can be removed from production code.
// You need to define `import.meta.vitest` to `undefined`
if Vitest.inSource {
  open Vitest.InSource

  test("In-source testing", t => {
    t->expect(1 + 2)->Expect.toBe(3)
  })
}

You need to bind test context t explicitly.

open Vitest

describe("Hello, Vitest", () => {
-  test("This is a test case", _ => {
+  test("This is a test case", t => {

-    assertions(3)
+    t->assertions(3)

-    expect(1 + 2)->Expect.toBe(3)
+    t->expect(1 + 2)->Expect.toBe(3)
  })
})

You can use simple flags for skip, concurrent, and only.

Skip.test("This will be skipped", t => {
  // ...
})

// Use simple flags instead.
test(~skip=true, "This will be skipped", t => {
  // ...
})

Module bindings will be deprecated and removed in next major (v3)

MIT


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4