Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 452 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 452 Bytes

VisualReview-node-client

Node.js client for VisualReview

Getting started

npm install visualreview-client --save-dev
import VisualReview from 'visualreview-client';

const vr = new VisualReview({
  projectName: 'myProject',
  suiteName: 'myTestSuite'
});

// Create run on the VisualReview server
vr.start();

// Upload a screenshot
vr.uploadScreenshot('myscreenshot.png');