Compare commits

...

2 Commits

Author SHA1 Message Date
8bf99ae7ec 4.0.5 2022-02-15 16:48:04 +01:00
cc708b29ae fix(core): update 2022-02-15 16:48:03 +01:00
3 changed files with 8 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@pushrocks/tapbundle", "name": "@pushrocks/tapbundle",
"version": "4.0.4", "version": "4.0.5",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@pushrocks/tapbundle", "name": "@pushrocks/tapbundle",
"version": "4.0.4", "version": "4.0.5",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@open-wc/testing-helpers": "^2.0.4", "@open-wc/testing-helpers": "^2.0.4",

View File

@ -1,7 +1,7 @@
{ {
"name": "@pushrocks/tapbundle", "name": "@pushrocks/tapbundle",
"private": false, "private": false,
"version": "4.0.4", "version": "4.0.5",
"description": "tap bundled for tapbuffer", "description": "tap bundled for tapbuffer",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",

View File

@ -1,5 +1,5 @@
# @pushrocks/tapbundle # @pushrocks/tapbundle
tap bundled for tapbuffer tap based testing framework for use with @gitzone/tstest
## Availabililty and Links ## Availabililty and Links
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/tapbundle) * [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/tapbundle)
@ -34,6 +34,10 @@ A few words on TypeScript
* tap compatible testing framework written in TypeScript * tap compatible testing framework written in TypeScript
* `expect` and `expectAsync` from the package `@pushrocks/smartexpect` * `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 ### Write your first tests
```typescript ```typescript