3.11.1 • Published 1 month ago

@swim/unit v3.11.1

Weekly downloads
6
License
Apache-2.0
Repository
github
Last release
1 month ago

@swim/unit

package documentation chat

@swim/unit implements a specializable unit testing framework.

Overview

TODO

Installation

npm

For an npm-managed project, npm install @swim/unit to make it a dependency. TypeScript sources will be installed into node_modules/@swim/unit/main. Transpiled JavaScript and TypeScript definition files install into node_modules/@swim/unit/lib/main. And a pre-built UMD script can be found in node_modules/@swim/unit/dist/main/swim-unit.js.

Usage

ES6/TypeScript

@swim/unit can be imported as an ES6 module from TypeScript and other ES6-compatible environments.

import * as unit from "@swim/unit";

CommonJS/Node.js

@swim/unit can also be used as a CommonJS module in Node.js applications.

var unit = require("@swim/unit");