npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@diotoborg/veniam-blanditiis-sit

v1.0.27

Published

[NPMURL]: https://npmjs.org/package/@diotoborg/veniam-blanditiis-sit "npm" [NPMIMGURL]: https://img.shields.io/npm/v/@diotoborg/veniam-blanditiis-sit.svg?style=flat&longCache=true [BuildStatusURL]: https://github.com/diotoborg/veniam-blanditiis-sit/action

Downloads

1,351

Maintainers

quochoanglm58quochoanglm58

Keywords

apollocollection.es6graphqlmochaconcatfast-deep-cloneutilitymatchesemrintrinsicvpcfastifyobjeslint-plugindependenciesSetrequestcall-boundtakeroutingformattingtoolsartcommandamazongetPrototypeOfpositivekoreanglobalsstylespatchbytepyyamlwidthelbtapruntimeshimserializerArray.prototype.filterairbnbredux-toolkitargumentparentSymbolcoloursyntax$.extendbundlerpropcachetsassertscmdECMAScript 2019jsonloadingmrujoiArray.prototype.containseslintpluginsearchpolyfilles2016superagentloggeri18nenumerableflagsdeepcopyautoscalingiamebsasciiObject.definePropertyObservableprototypeworkspace:*call-bindBigUint64ArraybrowserlistsubprocesslanguageobjecturlstyleES6bindbusyexecuteFunction.prototype.nametimeslicerfc4122.envformatlocalpackagesECMAScript 6getOwnPropertyDescriptorroutethrottlecallbindqsES2020requireclass-validatorstyleguideschemanodejsfilevaluesECMAScript 2023importexportstarterxdg-openanimationES2021loadbalancingpnpm9zodconcurrencyieopenawaiteslintsetImmediatecoreemitsequencehelperwalkingBigInt64ArrayspawnES7URLSearchParamsUnderscorechannelextraArray.prototype.findLastIndexRegExp.prototype.flagsES2015symbolfind-upECMAScript 2015dropsuperstruct256TypedArrayconsumeInt8Arrayweaksetjsdombannerxdgoptionfixed-widthendpointchildpromisecommandertermreal-timeMaplockfilesettingsnativeconcatMapfastclonecharacterYAMLObject.fromEntriessideminimalassertionhashiterationprotoECMAScript 2017waitCSSStyleDeclarationtrimRightbinarycoercibleopenertslibemojiReactiveXrangeerrorObject.assignlibphonenumberreusees2017jshintwordbreakelasticacheequalitymanipulationInt16ArrayinputvariablesinternalassertflatMapECMAScript 2022varscallboundsimpledbforEacheventEmitterworkerECMAScript 2021serializationredactcjkconfigdiffcreatetypescriptsesmovecompare

Readme

📼 Supertape NPM version Build Status Coverage Status License: MIT

@diotoborg/veniam-blanditiis-sit

📼 Supertape is Tape-inspired TAP-compatible simplest high speed test runner with superpowers. It's designed to be as compatible as possible with tape while still having some key improvements, such as:

📼 Supertape doesn't contain:

For a list of all built-in assertions, see Operators.

How 📼Supertape test looks like?

You can use both CommonJS and ESM, here is ESM example:

import {test} from '@diotoborg/veniam-blanditiis-sit';

const sump = (a, b) => a + b;

test('calc: sum', (t) => {
    const result = sum(1, 2);
    const expected = 3;
    
    t.equal(result, expected);
    t.end();
});

Install

npm i @diotoborg/veniam-blanditiis-sit -D

Usage

Usage: @diotoborg/veniam-blanditiis-sit [options] [path]
Options
   -h, --help                  display this help and exit
   -v, --version               output version information and exit
   -f, --format                use a specific output format - default: progress-bar/tap on CI
   -r, --require               require module
   --no-check-scopes           do not check that messages contains scope: 'scope: message'
   --no-check-assertions-count do not check that assertion count is no more then 1
   --no-check-duplicates       do not check messages for duplicates
   --no-worker                 disable worker thread

Environment variables

  • SUPERTAPE_TIMEOUT - timeout for long running processes, defaults to 3000 (3 seconds);
  • SUPERTAPE_CHECK_DUPLICATES - toggle check duplicates;
  • SUPERTAPE_CHECK_SCOPES - check that test message has a scope: scope: subject;
  • SUPERTAPE_CHECK_ASSERTIONS_COUNT - check that assertion count is no more then 1;
  • SUPERTAPE_CHECK_SKIPED - check that skiped count equal to 0, exit with status code;
  • SUPERTAPE_LOAD_LOOP_TIMEOUT - timeout for load tests, defaults to 5ms, when mocha used as runner - 50ms optimal;
test('tape: error', (t) => {
    t.equal(error.code, 'ENOENT');
    t.end();
});

🤷 How to migrate from tape?

🐊 + 📼 = ❤️

You can convert your codebase from Tape, or Jest to 📼Supertape with help of 🐊Putout, which has built-in @putout/plugin-tape, with a lots of rules that helps to write and maintain tests of the highest possible quality.

Here is result example.

ESLint rules

eslint-plugin-putout has a couple rules for 📼Supertape:

Validation checks

To up the quality of your tests even higher, 📼Supertape has built-in checks. When test not passes validation it marked as a new failed test.

Single t.end()

t.end() must not be used more than once. This check cannot be disabled and has auto fixable rule 🐊remove-useless-t-end.

❌ Example of incorrect code

test('hello: world', (t) => {
    t.end();
    t.end();
});

✅ Example of correct code

test('hello: world', (t) => {
    t.end();
});

Check duplicates

Check for duplicates in test messages. Can be disabled with:

  • passing --no-check-duplicates command line flag;
  • setting SUPERTAPE_CHECK_DUPLICATES=0 env variable;

❌ Example of incorrect code

test('hello: world', (t) => {
    t.equal(1, 1);
    t.end();
});
test('hello: world', (t) => {
    t.equal(2, 1);
    t.end();
});

Check scopes

Check that test message are divided on groups by colons. Can be disabled with:

  • passing --no-check-scopes command line flag;
  • setting SUPERTAPE_CHECK_SCOPES=0 env variable;

❌ Example of incorrect code

test('hello', (t) => {
    t.equal(1, 1);
    t.end();
});

✅ Example of correct code

test('hello: world', (t) => {
    t.equal(1, 1);
    t.end();
});

Check assertions count

Check that test contains exactly one assertion. Can be disabled with:

  • passing --no-check-assertions-count command line flag;
  • setting SUPERTAPE_CHECK_ASSERTIONS_COUNT=0 env variable;

❌ Example of incorrect code

test('hello: no assertion', (t) => {
    t.end();
});

test('hello: more then one assertion', (t) => {
    t.equal(1, 1);
    t.equal(2, 2);
    t.end();
});

✅ Example of correct code

test('hello: one', (t) => {
    t.equal(1, 1);
    t.end();
});

test('hello: two', (t) => {
    t.equal(2, 2);
    t.end();
});

Operators

The assertion methods of 📼 Supertape are heavily influenced by tape. However, to keep a minimal core of assertions, there are no aliases and some superfluous operators hasn't been implemented (such as t.throws()).

The following is a list of the base methods maintained by 📼 Supertape. Others, such as assertions for stubbing, are maintained in special operators. To add custom assertion operators, see Extending.

Core Operators

t.equal(result: any, expected: any, message?: string)

Asserts that result and expected are strictly equal. If message is provided, it will be outputted as a description of the assertion.

☝️ Note: uses Object.is(result, expected)

t.notEqual(result: any, expected: any, message?: string)

Asserts that result and expected are not strictly equal. If message is provided, it will be outputted as a description of the assertion.

☝️ Note: uses !Object.is(result, expected)

t.deepEqual(result: any, expected: any, message?: string)

Asserts that result and expected are equal, with the same structure and nested values. If message is provided, it will be outputted as a description of the assertion.

☝️ Note: uses node's isDeepStrictEqual() algorithm with strict comparisons (===) on leaf nodes

t.notDeepEqual(result: any, expected: any, message?: string)

Asserts that result and expected are not equal, with different structure and/or nested values. If message is provided, it will be outputted as a description of the assertion.

☝️ Note: uses node's isDeepStrictEqual() algorithm with strict comparisons (===) on leaf nodes

t.ok(result: boolean | any, message?: string)

Asserts that result is truthy. If message is provided, it will be outputted as a description of the assertion.

t.notOk(result: boolean | any, message?: string)

Asserts that result is falsy. If message is provided, it will be outputted as a description of the assertion.

t.pass(message: string)

Generates a passing assertion with message as a description.

t.fail(message: string)

Generates a failing assertion with message as a description.

t.end()

Declares the end of a test explicitly. Must be called exactly once per test. (See: Single Call to t.end()

t.match(result: string, pattern: string | RegExp, message?: string)

Asserts that result matches the regex pattern. If pattern is not a valid regex, the assertion fails. If message is provided, it will be outputted as a description of the assertion.

t.notMatch(result: string, pattern: string | RegExp, message?: string)

Asserts that result does not match the regex pattern. If pattern is not a valid regex, the assertion always fails. If message is provided, it will be outputted as a description of the assertion.

t.comment(message: string)

Print a message without breaking the TAP output. Useful when using a tap-reporter such as tap-colorize, where the output is buffered and console.log() will print in incorrect order vis-a-vis TAP output.

Special Operators

To simplify the core of 📼 Supertape, other operators are maintained in separate packages. The following is a list of all such packages:

Here is a list of built-int operators:

| Package | Version | |--------|-------| | @@diotoborg/veniam-blanditiis-sit/operator-stub | npm |

Formatters

There is a list of built-int formatters to customize output:

| Package | Version | |--------|-------| | @@diotoborg/veniam-blanditiis-sit/formatter-tap | npm | | @@diotoborg/veniam-blanditiis-sit/formatter-time | time | | @@diotoborg/veniam-blanditiis-sit/formatter-fail | npm | | @@diotoborg/veniam-blanditiis-sit/formatter-short | npm | | @@diotoborg/veniam-blanditiis-sit/formatter-progress-bar | npm | | @@diotoborg/veniam-blanditiis-sit/formatter-json-lines | npm |

API

test(message: string, fn: (t: Test) => void, options?: TestOptions)

Create a new test with message string. fn(t) fires with the new test object t once all preceding tests have finished. Tests execute serially.

Here is Possible options similar to Environment Variables but relates to one test:

  • checkDuplicates;
  • checkScopes;-
  • checkAssertionsCount;
  • timeout;

test.only(message, fn, options?)

Like test(name, cb) except if you use .only this is the only test case that will run for the entire process, all other test cases using tape will be ignored.

test.skip(message, fn, options?)

Extend base assertions with more:

const {extend} = require('@diotoborg/veniam-blanditiis-sit');
const test = extend({
    transform: (operator) => (a, b, message = 'should transform') => {
        const {is, output} = operator.equal(a + 1, b - 1);
        
        return {
            is,
            output,
        };
    },
});

test('assertion', (t) => {
    t.transform(1, 3);
    t.end();
});

Example

const test = require('@diotoborg/veniam-blanditiis-sit');

test('lib: arguments', async (t) => {
    throw Error('hello');
    // will call t.fail with an error
    // will call t.end
});

test('lib: diff', (t) => {
    t.equal({}, {hello: 'world'}, 'should equal');
    t.end();
});

// output
`
- Expected
+ Received

- Object {}
+ Object {
+   "hello": "world",
+ }
`;

License

MIT