Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rufflib-expect

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rufflib-expect

A RuffLIB library for unit testing rough and sketchy JavaScript apps.

  • 3.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

RuffLIB Expect

A RuffLIB library for unit testing rough and sketchy JavaScript apps.

▶  Version: 3.0.4
▶  Homepage: https://richplastow.com/rufflib-expect
▶  NPM: https://www.npmjs.com/package/rufflib-expect
▶  Repo: https://github.com/richplastow/rufflib-expect
▶  Tests: https://richplastow.com/rufflib-expect/test/run-browser-tests.html

Typical usage:

import Expect from 'rufflib-expect';

const expect = new Expect('Mathsy Test Suite');
expect.section('Check that factorialise() works');
expect.that(`factorialise(5) // 5! = 5 * 4 * 3 * 2 * 1`,
             factorialise(5)).is(120);

console.log(expect.render('Ansi'));

function factorialise(n) {
    if (n === 0 || n === 1) return 1;
    for (let i=n-1; i>0; i--) n *= i;
    return n;
}

Dev, Test and Build

Run the test suite in ‘src/docs/’, while working on this library:
npm test --src
npm start --src --open --test

Build the minified and unminified bundles in ‘dist/’ and ‘docs/’:
npm run build

Run the test suite in ‘docs/’, after a build:
npm test
npm start --open --test

Keywords

FAQs

Package last updated on 30 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc