Skip to content

Commit 9807f09

Browse files
committed
In test-with-debug-graph, put generated files in build folder
1 parent e84ecc7 commit 9807f09

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

script/test-with-debug-graph.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22

3-
echo '<?xml version="1.0"?>' > debug.html
4-
echo '<style> svg { width: 100%; margin-bottom: 10px; } </style>' >> debug.html
5-
node_modules/.bin/mocha test/js/*.js 2> >(dot -Tsvg >> debug.html)
3+
echo '<?xml version="1.0"?>' > build/debug.html
4+
echo '<style> svg { width: 100%; margin-bottom: 10px; } </style>' >> build/debug.html
5+
node_modules/.bin/mocha test/js/*.js 2> >(dot -Tsvg >> build/debug.html)
6+
open build/debug.html

0 commit comments

Comments
 (0)