12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
|
// ============
|
||
|
// combines different tap test files to an overall result
|
||
|
// ============
|
||
|
import * as plugins from './tstest.plugins';
|
||
|
import { TapParser } from './tstest.tap.parser';
|
||
|
|
||
|
export class TapCombinator {
|
||
|
addTapParser(tapParserArg: TapParser) {
|
||
|
|
||
|
}
|
||
|
}
|