iso-test

1.3.11 • Public • Published

iso-test

Build Status

An isomorphic testing framework using nodejs and a generic browser (firefox, safari, chrome, and chromium supported, so far). Runs the same test code in both environments, and fails on any uncaught errors, or if finishTest is called with an argument that doesn't start with pass or kill.

Usage

Writing unit tests with iso-test is very easy. Simply import finishTest and call it with either pass ${successMessage} or fail ${failmessage}. A third command word kill tells the test runner to kill any browser processes when it is passed to finishTest from the browser. All other message formats are considered fail cases.

Then to run the tests, pass your test script to the iso-test command.

iso-test yourtest.js

This will run the test once in node, and once in the browser indicated by the BROWSER environment variable.

Examples

Configuration

Environment variables and .env files are used to configure iso-test. Interpreted variables are:

Variable Default Description
BROWSER chromium Browser executable to run (firefox, safari, chrome, and chromium supported)
HEADLESS 0 Run in headless mode if 1/true
SKIPNODE 0 Skip running the tests in node and only try the browser.
DEBUG 0 Print extra debug lines.
TEST_TIMEOUT 15000 Maximum text execution time in ms.

Isomorphic modules

This package implements the iso-module-boilerplate pattern, and is used there by default.

Dependencies (5)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i iso-test

    Weekly Downloads

    2

    Version

    1.3.11

    License

    MIT

    Unpacked Size

    18.3 kB

    Total Files

    12

    Last publish

    Collaborators

    • isysd