Compare commits

..

2 Commits

Author SHA1 Message Date
5949988293 1.0.57 2021-08-20 18:43:11 +02:00
04f7be07a3 fix(core): update 2021-08-20 18:43:11 +02:00
4 changed files with 9 additions and 5 deletions

View File

@ -33,9 +33,10 @@ auditProductionDependencies:
- npmci npm prepare
- npmci command npm install --production --ignore-scripts
- npmci command npm config set registry https://registry.npmjs.org
# - npmci command npm audit --audit-level=high --only=prod --production
- npmci command npm audit --audit-level=high --only=prod --production
tags:
- docker
allow_failure: true
auditDevDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@gitzone/tstest",
"version": "1.0.56",
"version": "1.0.57",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@gitzone/tstest",
"version": "1.0.56",
"version": "1.0.57",
"license": "MIT",
"dependencies": {
"@gitzone/tsbundle": "^1.0.84",

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tstest",
"version": "1.0.56",
"version": "1.0.57",
"private": false,
"description": "a test utility to run tests that match test/**/*.ts",
"main": "dist_ts/index.js",

View File

@ -198,7 +198,10 @@ export class TsTest {
console.error(err);
}
if ((globalThis as any).tapbundleDeferred && (globalThis as any).tapbundleDeferred.promise) {
if (
(globalThis as any).tapbundleDeferred &&
(globalThis as any).tapbundleDeferred.promise
) {
await (globalThis as any).tapbundleDeferred.promise;
} else {
console.log('Error: Could not find tapbundle Deferred');