Mario Valle

Results 51 issues of Mario Valle

I run the extension on the whole workspace and obtain the list of possible duplicated pieces of code. Now click on one of the duplicates found and look at the...

On windows 10 64bits I run supervisor from a script this way: ``` @start "Server" /MIN /D D:\Projects\app supervisor -w server -n error -s -e js,json,yaml -- server\app.js --configuration server\config.yaml...

I'm using supertest on Windows 10 and node 12.14.1 with great satisfaction. However, if I switch my server to http2 all tests fail. They prints only `socket hang up` and...

Trying to edit a test after I added a new case seems ignored. To reproduce: - Edit a test - Change the title - Push "Save test case" - The...

I have a single project split in various pieces, each in a subdirectory of the project top directory. Currently, to use `typedoc` and `eslint-plugin-tsdoc`, I need to copy the configuration...

To put a trimmer first in the pipeline I have to do: ``` fullTextIndex = lunr(function() { this.use(lunr.multiLanguage("en", "it")); this.pipeline.after(this.pipeline._stack[0], MyImprovedTrimmer); } ``` The usual `this.pipeline.add(MyImprovedTrimmer);` works, but put my...

In `lunr.Index.load()` the version of the loaded index elicits only a warning if the two versions are different. Instead I think `lunr.Index.load()` should throw an error if the major version...

I'm trying to test if an array increases in length by 1 after executing a certain operation. The test is written in typescript and runs with the usual `mocha -r...

On [expect documentation page](https://www.chaijs.com/api/bdd/) the entry for `fail` is duplicated. One is enough. Thanks! mario

Developing a module (in Typescript) that will be loaded by RequireJS. ``` /// ``` This line is needed to build the Require define line: ``` define(["require", "exports", "dagre"], function (require,...