This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('ts-mocha'); | |
const Mocha = require('mocha'); | |
const fs = require('fs'); | |
let testSubject = null; | |
if (process.argv.length === 3) { | |
testSubject = process.argv[2]; | |
} | |
const mocha = new Mocha({ timeout: 50000 }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "IronPython", | |
"type": "python", | |
"request": "launch", | |
"stopOnEntry": true, | |
"pythonPath": "C:\\Program Files (x86)\\IronPython 2.7\\ipy.exe", | |
"program": "${file}", |
NewerOlder