now allows the setting of a better config for how tests are run
This commit is contained in:
@ -20,6 +20,8 @@ let tap = function (configArg: INpmtsConfig) {
|
||||
*/
|
||||
let npmtsTapBuffer = new plugins.tapbuffer.TabBuffer()
|
||||
|
||||
npmtsTapBuffer.setConfig(configArg.testConfig)
|
||||
|
||||
/**
|
||||
* handle the testable files
|
||||
*/
|
||||
|
@ -19,6 +19,7 @@ export interface INpmtsConfig {
|
||||
mode: npmtsMode
|
||||
test: boolean
|
||||
testTs: any
|
||||
testConfig: any
|
||||
ts: any
|
||||
tsOptions: any
|
||||
watch: boolean
|
||||
@ -38,6 +39,9 @@ export let run = function (argvArg) {
|
||||
mode: 'default',
|
||||
test: true,
|
||||
testTs: {},
|
||||
testConfig: {
|
||||
parallel: true
|
||||
},
|
||||
ts: {},
|
||||
tsOptions: {},
|
||||
watch: false,
|
||||
|
Reference in New Issue
Block a user