This package has been deprecated

Author message:

This package has been deprecated in favour of the new package at @push.rocks/tapbundle

@pushrocks/tapbundle
TypeScript icon, indicating that this package has built-in type declarations

5.0.8 • Public • Published

@pushrocks/tapbundle

tap based testing framework for use with @gitzone/tstest

Availabililty and Links

Status for master

Status Category Status Badge
GitLab Pipelines pipeline status
GitLab Pipline Test Coverage coverage report
npm npm downloads per month
Snyk Known Vulnerabilities
TypeScript Support TypeScript
node Support node
Code Style Code Style
PackagePhobia (total standalone install weight) PackagePhobia
PackagePhobia (package size on registry) PackagePhobia
BundlePhobia (total size when bundled) BundlePhobia
Platform support Supports Windows 10 Supports Mac OS X

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 | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer

Readme

Keywords

none

Package Sidebar

Install

npm i @pushrocks/tapbundle

Weekly Downloads

13

Version

5.0.8

License

MIT

Unpacked Size

46.9 kB

Total Files

34

Last publish

Collaborators

  • lossless