sisoe24 / Nuke-Tools

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
5 months ago2 years old
Documentation comment not found for function declaration captureStdout
83    }
84}
85
86async function captureStdout(fn: any) {87    let w = process.stdout.write,
88        buffer = "";
89    process.stdout.write = (s) => {
Documentation comment not found for function declaration run
24    };
25}
26
27export async function run(): Promise<void> {28    const testsRoot = path.resolve(__dirname, "..");
29
30    // Setup coverage pre-test, including post-test hook to report
Documentation comment not found for function declaration main
 2
 3import { runTests } from 'vscode-test';
 4
 5async function main() { 6	try {
 7		// The folder containing the Extension Manifest package.json
 8		// Passed to `--extensionDevelopmentPath`
Documentation comment not found for function declaration sendCommand
396    return await sendData(getHost(), getPort(), JSON.stringify(composeMessage(editor)));
397}
398
399export function sendCommand(command: string): Promise<{400    message: string;
401    error: boolean;
402    errorMessage: string;
Documentation comment not found for arrow function random
313 * @returns - data object
314 */
315export function prepareDebugMsg(): { text: string; file: string } {
316    const random = () => Math.round(Math.random() * 10);317    const r1 = random();
318    const r2 = random();
319