/* IMPORTANT * This snapshot file is auto-generated, but designed for humans. * It should be checked into source control and tracked carefully. * Re-generate by setting TAP_SNAPSHOT=1 and running tests. * Make sure to inspect the output below. Do not ignore changes! */ 'use strict' exports[`test/grafn.js TAP > It can convert to a string representing the graph in graphviz format 1`] = ` digraph { root firstDependent root -> firstDependent secondDependent root -> secondDependent final firstDependent -> final secondDependent -> final } ` exports[`test/grafn.js TAP It colorizes the graph based on execution results > It adds the right colors according to execution 1`] = ` digraph { root[color=green] firstDependent[color=green] root -> firstDependent secondDependent[color=red] root -> secondDependent final firstDependent -> final secondDependent -> final } `