@push.rocks/tapbundle
tap bundled for tapbuffer
Availabililty and Links
Status for master
GitLab Pipelines |  |
GitLab Pipline Test Coverage |  |
npm |  |
Snyk |  |
TypeScript Support |  |
node Support |  |
Code Style |  |
PackagePhobia (total standalone install weight) |  |
PackagePhobia (package size on registry) |  |
BundlePhobia (total size when bundled) |  |
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';
import * as myAwesomeModuleToTest from '../dist/index';
tap.test('my awesome description', async (tools) => {
tools.timeout(2000);
});
const myTest2 = tap.test('my awesome test 2', async (tools) => {
myAwsomeModuleToTest.doSomethingAsync();
await tools.delayFor(3000);
console.log('This gets logged 3000 ms into the test');
});
tap.test('my awesome test 3', async (tools) => {
expect(true).toBeTrue();
await expectAsync(tools.delayFor(2000)).toBeUndefined();
expectAsync(myTest2.promise)
.property('hrtMeasurement')
.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');
});
tap.start();
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.
Legal
MIT licensed | © Task Venture Capital GmbH
| By using this npm module you agree to our privacy policy