A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.
Go to file
2019-11-16 19:22:21 +01:00
test fix(core): update 2019-08-22 23:57:27 +02:00
ts feat(tools): can now ensure certain directories 2019-11-16 19:22:20 +01:00
.gitignore fix(core): update 2019-06-19 14:49:23 +02:00
.gitlab-ci.yml fix(core): update 2019-11-16 18:45:47 +01:00
.snyk fix(security): add snyk file 2018-06-28 23:47:57 +02:00
license fix(core): update 2019-04-10 12:56:17 +02:00
npmextra.json fix(core): update 2019-04-10 12:56:17 +02:00
package-lock.json 3.1.0 2019-11-16 19:22:21 +01:00
package.json 3.1.0 2019-11-16 19:22:21 +01:00
README.md fix(core): update 2019-11-16 18:45:47 +01:00
tslint.json fix(core): update 2019-04-10 12:56:17 +02:00

@pushrocks/tapbundle

tap bundled for tapbuffer

Status for master

build status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

A few words on TypeScript

Included in this package

  • tap compatible testing framework written in TypeScript
  • a collection of test tools
  • code testing framework with typings

Write your first tests

import { tap, expect } 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
});

let 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).to.be.true; // will not throw
  await expect(tools.delayFor(2000)).to.eventually.be.fulfilled; // yay expect promises :)
  expect((await myTest2.promise).hrtMeasurement.milliSeconds > 1000).to.be.true; // access other tests metadata :)
});

let 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).to.equal('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