firn
v0.2.2
Published
visual regression test tool
Downloads
1
Readme
Firn
Visual Regression Test Tool
Installation
using yarn
yarn add firn
using npm
npm i -S firn
API
firn(url, [,config])
url
— a valid URL to the page you want to take screenshot from
config
— optional config
Usage
Cli
firn http://example.com/
Node
const firn = require('firn')
;(async () => {
const [err, raport] = await firn(urls, config)
if (err) log('😦 Oh No! ', err)
log('📝 raport ', raport)
})()