Skip to content
/ exami Public

⚡ Ultra lean test framework for browser and node.

Notifications You must be signed in to change notification settings

abhishiv/exami

Repository files navigation

exami

⚡ Ultra lean test framework for browser and node.

Version License: MIT Build Status Badge size

npm: npm i exami

cdn: https://cdn.jsdelivr.net/npm/exami/+esm


Example

import { describe, runSuite, printTap } from "./index";

const suite = describe("My first test suite", ({ test }) => {
  test("my test1", ({ expect }) => {
    expect(4).toBe(4);
  });

  test("my test2", ({ expect }) => {
    expect(4).toBe(4);
  });
});

runSuite(suite).then((results) => {
  // console.log(results);
  console.log(printTap(results));
});

About

⚡ Ultra lean test framework for browser and node.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published