Compare commits

...

4 Commits

Author SHA1 Message Date
a35db70155 1.0.25 2019-10-02 10:56:03 +02:00
0286312855 fix(core): update 2019-10-02 10:56:02 +02:00
40cf6f72ce 1.0.24 2019-05-28 11:32:06 +02:00
e6c71a1350 fix(core): update 2019-05-28 11:32:06 +02:00
3 changed files with 501 additions and 411 deletions

896
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tstest",
"version": "1.0.23",
"version": "1.0.25",
"private": false,
"description": "a test utility to run tests that match test/**/*.ts",
"main": "dist/index.js",
@ -19,16 +19,16 @@
"build": "(tsbuild)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.11",
"@pushrocks/tapbundle": "^3.0.9"
"@gitzone/tsbuild": "^2.1.17",
"@pushrocks/tapbundle": "^3.0.13"
},
"dependencies": {
"@gitzone/tsrun": "^1.2.6",
"@gitzone/tsrun": "^1.2.8",
"@pushrocks/consolecolor": "^2.0.1",
"@pushrocks/smartfile": "^7.0.2",
"@pushrocks/smartfile": "^7.0.6",
"@pushrocks/smartlog": "^2.0.19",
"@pushrocks/smartpromise": "^3.0.2",
"@pushrocks/smartshell": "^2.0.20",
"@pushrocks/smartpromise": "^3.0.6",
"@pushrocks/smartshell": "^2.0.25",
"@types/figures": "^3.0.1",
"figures": "^3.0.0"
}

View File

@ -41,7 +41,7 @@ export class TestDirectory {
private async _init() {
this.testfileArray = await plugins.smartfile.fs.fileTreeToObject(
plugins.path.join(this.cwd, this.relativePath),
'**/*.ts'
'test*.ts'
);
}