Set up a mostly-default project with BackstopJS

Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
This commit is contained in:
2025-03-31 00:42:01 -07:00
commit 6f29015422
21 changed files with 3099 additions and 0 deletions

3
functions.bash Normal file
View File

@@ -0,0 +1,3 @@
function cleanurls { for result in $(find . -name "result-*"); do; (cd $result; python3 ../chatgpt-fix-root-URLs.py); done; }
function htmls { find -s result-$1 -name "*.html" | sed "s|^result-$1/||"; }
function commonhtmls { comm -12 <(htmls $1) <(htmls $2); }