Socket
Book a DemoInstallSign in
Socket

@push.rocks/tapbundle

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@push.rocks/tapbundle

tap bundled for tapbuffer

npmnpm
Version
5.0.20
Version published
Weekly downloads
46
53.33%
Maintainers
1
Weekly downloads
 
Created
Source

@push.rocks/tapbundle

tap bundled for tapbuffer

  • npmjs.org (npm package)
  • gitlab.com (source)
  • github.com (source mirror)
  • docs (typedoc)

Status for master

Status CategoryStatus Badge
GitLab Pipelinespipeline status
GitLab Pipline Test Coveragecoverage report
npmnpm downloads per month
SnykKnown Vulnerabilities
TypeScript SupportTypeScript
node Supportnode
Code StyleCode Style
PackagePhobia (total standalone install weight)PackagePhobia
PackagePhobia (package size on registry)PackagePhobia
BundlePhobia (total size when bundled)BundlePhobia

Usage

Use TypeScript for best in class instellisense.

A few words on TypeScript

Included in this package

  • tap compatible testing framework written in TypeScript
  • expect and expectAsync from the package @pushrocks/smartexpect

A few words on tap

"tap" stands for "test anything protocol". Its programming language agnostic as long as the test interpreter can read the tap console output. This package is optimized to work with @gitzone/tstest as interpreter, which offers different V8 based runtime environments like nodejs, chrome, and deno.

Write your first tests

import { tap, expect, expectAsync } from 'tapbundle'; // has typings in place

import * as myAwesomeModuleToTest from '../dist/index'; // '../dist/index' is the standard path for npmts modules

tap.test('my awesome description', async (tools) => {
  // tools are optional parameter
  tools.timeout(2000); // test will fail if it takes longer than 2000 millisenconds
});

const myTest2 = tap.test('my awesome test 2', async (tools) => {
  myAwsomeModuleToTest.doSomethingAsync(); // we don't wait here
  await tools.delayFor(3000); // yay! :) promise based timeouts :)
  console.log('This gets logged 3000 ms into the test');
});

tap.test('my awesome test 3', async (tools) => {
  expect(true).toBeTrue(); // will not throw
  await expectAsync(tools.delayFor(2000)).toBeUndefined(); // yay expect promises :)
  expectAsync(myTest2.promise) // access other tests metadata :)
    .property('hrtMeasurement') // and drill down into properties
    .property('milliSeconds')
    .toBeGreaterThan(1000);
});

const myTest4 = tap.testParallel('my awesome test 4', async (tools) => {
  await tools.delayFor(4000);
  console.log('logs to console after 4 seconds into this test');
});

tap.test('my awesome test 5', async () => {
  expect(myTest4.status).toEqual('pending'); // since this test will likely finish before myTest4.
});

tap.start(); // start the test, will automtically plan tests for you (so the tap parser knows when tests exit bofore they are finished)

Contribution

We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can contribute one time or contribute monthly. :)

For further information read the linked docs at the top of this readme.

MIT licensed | © Task Venture Capital GmbH | By using this npm module you agree to our privacy policy

FAQs

Package last updated on 19 Mar 2024

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