Compare commits

...

8 Commits

Author SHA1 Message Date
3db913eb59 1.0.72 2022-07-24 14:11:18 +02:00
28e0c32944 fix(core): update 2022-07-24 14:11:17 +02:00
0be6b3400a 1.0.71 2022-05-04 18:58:36 +02:00
eeba113e09 fix(core): update 2022-05-04 18:58:35 +02:00
19e45b305c 1.0.70 2022-03-25 01:30:34 +01:00
f9f4150cff fix(core): update 2022-03-25 01:30:33 +01:00
710548911e 1.0.69 2022-03-17 12:24:40 +01:00
23f9a28fa0 fix(core): update 2022-03-17 12:24:40 +01:00
4 changed files with 2372 additions and 9361 deletions

11715
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@gitzone/tstest", "name": "@gitzone/tstest",
"version": "1.0.68", "version": "1.0.72",
"private": false, "private": false,
"description": "a test utility to run tests that match test/**/*.ts", "description": "a test utility to run tests that match test/**/*.ts",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@ -16,27 +16,27 @@
"prepareTest": "git clone https://gitlab.com/sandboxzone/sandbox-npmts.git .nogit/sandbox-npmts && cd .nogit/sandbox-npmts && npm install", "prepareTest": "git clone https://gitlab.com/sandboxzone/sandbox-npmts.git .nogit/sandbox-npmts && cd .nogit/sandbox-npmts && npm install",
"tstest": "cd .nogit/sandbox-npmts && node ../../cli.ts.js test/ --web", "tstest": "cd .nogit/sandbox-npmts && node ../../cli.ts.js test/ --web",
"cleanUp": "rm -rf .nogit/sandbox-npmts", "cleanUp": "rm -rf .nogit/sandbox-npmts",
"build": "(tsbuild --web --skiplibcheck)" "build": "(tsbuild --web --allowimplicitany)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.56", "@gitzone/tsbuild": "^2.1.63",
"tslint": "^6.1.3", "tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0" "tslint-config-prettier": "^1.18.0"
}, },
"dependencies": { "dependencies": {
"@gitzone/tsbundle": "^1.0.97", "@gitzone/tsbundle": "^2.0.5",
"@gitzone/tsrun": "^1.2.31", "@gitzone/tsrun": "^1.2.37",
"@pushrocks/consolecolor": "^2.0.1", "@pushrocks/consolecolor": "^2.0.1",
"@pushrocks/smartbrowser": "^1.0.22", "@pushrocks/smartbrowser": "^2.0.2",
"@pushrocks/smartdelay": "^2.0.13", "@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartexpress": "^3.0.108", "@pushrocks/smartexpress": "^4.0.5",
"@pushrocks/smartfile": "^9.0.6", "@pushrocks/smartfile": "^10.0.2",
"@pushrocks/smartlog": "^2.0.44", "@pushrocks/smartlog": "^3.0.0",
"@pushrocks/smartpromise": "^3.1.7", "@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartshell": "^2.0.30", "@pushrocks/smartshell": "^2.0.30",
"@pushrocks/tapbundle": "^5.0.2", "@pushrocks/tapbundle": "^5.0.3",
"@types/figures": "^3.0.1", "@types/figures": "^3.0.1",
"figures": "^4.0.0" "figures": "^4.0.1"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@gitzone/tstest',
version: '1.0.72',
description: 'a test utility to run tests that match test/**/*.ts'
}

View File

@ -41,15 +41,15 @@ export class TsTest {
case process.env.CI && fileNameArg.includes('.nonci.'): case process.env.CI && fileNameArg.includes('.nonci.'):
console.log('!!!!!!!!!!!'); console.log('!!!!!!!!!!!');
console.log( console.log(
`not running testfile ${fileNameArg}, sinc we are CI and file name includes '.nonci.' tag` `not running testfile ${fileNameArg}, since we are CI and file name includes '.nonci.' tag`
); );
console.log('!!!!!!!!!!!'); console.log('!!!!!!!!!!!');
break; break;
case fileNameArg.endsWith('.browser.ts'): case (fileNameArg.endsWith('.browser.ts') || fileNameArg.endsWith('.browser.nonci.ts' )):
const tapParserBrowser = await this.runInChrome(fileNameArg); const tapParserBrowser = await this.runInChrome(fileNameArg);
tapCombinator.addTapParser(tapParserBrowser); tapCombinator.addTapParser(tapParserBrowser);
break; break;
case fileNameArg.endsWith('.both.ts'): case (fileNameArg.endsWith('.both.ts') || fileNameArg.endsWith('.both.nonci.ts')):
console.log('>>>>>>> TEST PART 1: chrome'); console.log('>>>>>>> TEST PART 1: chrome');
const tapParserBothBrowser = await this.runInChrome(fileNameArg); const tapParserBothBrowser = await this.runInChrome(fileNameArg);
tapCombinator.addTapParser(tapParserBothBrowser); tapCombinator.addTapParser(tapParserBothBrowser);
@ -136,7 +136,7 @@ export class TsTest {
async () => { async () => {
const convertToText = (obj: any): string => { const convertToText = (obj: any): string => {
// create an array that will later be joined into a string. // create an array that will later be joined into a string.
const stringArray = []; const stringArray: string[] = [];
if (typeof obj === 'object' && typeof obj.toString === 'function') { if (typeof obj === 'object' && typeof obj.toString === 'function') {
stringArray.push(obj.toString()); stringArray.push(obj.toString());