@travetto/test
Advanced tools
Comparing version 5.0.8 to 5.0.9
{ | ||
"name": "@travetto/test", | ||
"version": "5.0.8", | ||
"version": "5.0.9", | ||
"description": "Declarative test framework", | ||
@@ -30,11 +30,11 @@ "keywords": [ | ||
"dependencies": { | ||
"@travetto/registry": "^5.0.8", | ||
"@travetto/runtime": "^5.0.8", | ||
"@travetto/terminal": "^5.0.8", | ||
"@travetto/worker": "^5.0.8", | ||
"@travetto/registry": "^5.0.9", | ||
"@travetto/runtime": "^5.0.9", | ||
"@travetto/terminal": "^5.0.9", | ||
"@travetto/worker": "^5.0.9", | ||
"yaml": "^2.5.1" | ||
}, | ||
"peerDependencies": { | ||
"@travetto/cli": "^5.0.8", | ||
"@travetto/transformer": "^5.0.6" | ||
"@travetto/cli": "^5.0.9", | ||
"@travetto/transformer": "^5.0.7" | ||
}, | ||
@@ -41,0 +41,0 @@ "peerDependenciesMeta": { |
@@ -30,5 +30,2 @@ import path from 'node:path'; | ||
const consumer = await RunnableTestConsumer.get(this.#state.consumer ?? this.#state.format); | ||
console.debug('Running', { globs }); | ||
const tests = await RunnerUtil.getTestDigest(globs, this.#state.tags); | ||
@@ -35,0 +32,0 @@ const testRuns = RunnerUtil.getTestRuns(tests) |
@@ -5,2 +5,3 @@ import { spawn } from 'node:child_process'; | ||
import readline from 'node:readline/promises'; | ||
import path from 'node:path'; | ||
@@ -52,3 +53,3 @@ import { Env, ExecUtil, ShutdownManager, Util, RuntimeIndex, Runtime } from '@travetto/runtime'; | ||
for await (const item of fs.glob(globs)) { | ||
const src = Runtime.workspaceRelative(item); | ||
const src = Runtime.workspaceRelative(path.resolve(item)); | ||
const match = allFiles.get(src); | ||
@@ -55,0 +56,0 @@ if (match && await this.isTestFile(match.sourceFile)) { |
@@ -17,3 +17,3 @@ import { CliCommand } from '@travetto/cli'; | ||
async main(globs: string[] = ['**/*.ts']) { | ||
async main(globs: string[] = ['**/*']) { | ||
// Load all tests | ||
@@ -20,0 +20,0 @@ for await (const imp of await RunnerUtil.getTestImports(globs)) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
112063
Updated@travetto/registry@^5.0.9
Updated@travetto/runtime@^5.0.9
Updated@travetto/terminal@^5.0.9
Updated@travetto/worker@^5.0.9