@travetto/test
Advanced tools
Comparing version 3.3.4 to 3.3.5
{ | ||
"name": "@travetto/test", | ||
"version": "3.3.4", | ||
"version": "3.3.5", | ||
"description": "Declarative test framework", | ||
@@ -37,3 +37,3 @@ "keywords": [ | ||
"peerDependencies": { | ||
"@travetto/cli": "^3.3.4", | ||
"@travetto/cli": "^3.3.5", | ||
"@travetto/transformer": "^3.3.2" | ||
@@ -40,0 +40,0 @@ }, |
@@ -21,3 +21,7 @@ import { CliCommand } from '@travetto/cli'; | ||
for (const file of files) { | ||
await import(RootIndex.getFromSource(file)!.import); | ||
try { | ||
await import(RootIndex.getFromSource(file)!.import); | ||
} catch (err) { | ||
console.error('Failed to import', file, err); | ||
} | ||
} | ||
@@ -24,0 +28,0 @@ |
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
110821
2880