fluidtrends/savor

View on GitHub
src/commands/test.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {
    Command
} from '..'

export const test = {
    bin: "./node_modules/.bin/mocha",
    args: [
        "--recursive", 
        "test/specs/**/*.ts", 
        "--require", 
        "ts-node/register"
    ]
} as Command