sln-opener
Version:
Simple command line tool for opening visual studio solutions from their current directory. Useful if you work from the command prommpt using tools like git-posh.
19 lines (18 loc) • 371 B
JavaScript
module.exports = {
testEnvironment: 'node',
collectCoverage: true,
collectCoverageFrom: [
'config.js',
'mainMenu.js'
],
coverageThreshold: {
global: {
branches: 50,
functions: 55,
lines: 55,
statements: 55
}
},
testMatch: ['**/__tests__/**/*.test.js', '**/?(*.)+(spec|test).js'],
verbose: true
};