Migrate to nyc instead of istanbul for code coverage

This commit is contained in:
Nick O'Leary
2020-10-19 21:10:34 +01:00
parent 8049e44dec
commit ff0be73b1f
5 changed files with 26 additions and 26 deletions

View File

@@ -456,9 +456,9 @@ function remapSubflowNodes(nodes,nodeMap) {
var node = nodes[id];
if (node.wires) {
var outputs = node.wires;
for (j=0;j<outputs.length;j++) {
wires = outputs[j];
for (k=0;k<wires.length;k++) {
for (var j=0;j<outputs.length;j++) {
var wires = outputs[j];
for (var k=0;k<wires.length;k++) {
if (nodeMap[outputs[j][k]]) {
outputs[j][k] = nodeMap[outputs[j][k]].id
} else {