@travetto/test
Advanced tools
Comparing version 0.0.64 to 0.0.65
@@ -30,3 +30,3 @@ { | ||
}, | ||
"version": "0.0.64" | ||
"version": "0.0.65" | ||
} |
@@ -11,3 +11,3 @@ import * as fs from 'fs'; | ||
import { Consumer } from '../../consumer'; | ||
import { asyncTimeout, TIMEOUT, PhaseManager } from './phase'; | ||
import { asyncTimeout, TIMEOUT, ExecutionPhaseManager } from './phase'; | ||
@@ -156,3 +156,3 @@ export class ExecuteUtil { | ||
const mgr = new PhaseManager(consumer, suite, result); | ||
const mgr = new ExecutionPhaseManager(consumer, suite, result); | ||
@@ -184,3 +184,3 @@ try { | ||
const mgr = new PhaseManager(consumer, suite, result); | ||
const mgr = new ExecutionPhaseManager(consumer, suite, result); | ||
@@ -187,0 +187,0 @@ try { |
@@ -23,3 +23,3 @@ import { AssertUtil } from '../assert'; | ||
export class PhaseManager { | ||
export class ExecutionPhaseManager { | ||
private progress: ('all' | 'each')[] = []; | ||
@@ -26,0 +26,0 @@ |
import * as minimist from 'minimist'; | ||
import { PhaseManager } from '@travetto/base'; | ||
import { ArrayDataSource } from '@travetto/pool'; | ||
@@ -97,2 +98,4 @@ import { deserializeError } from '@travetto/exec'; | ||
await new PhaseManager('test').load().run(); | ||
await client().process( | ||
@@ -99,0 +102,0 @@ new ArrayDataSource(files), |
50469
1423