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