Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@travetto/test

Package Overview
Dependencies
Maintainers
0
Versions
352
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/test - npm Package Compare versions

Comparing version 5.0.8 to 5.0.9

14

package.json
{
"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)) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc