Skip to content

Latest commit

 

History

History

tests

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Setup and run tests

  • Run via Grunt
    • Install dependencies; npm install;
    • Run tests in browser: grunt;
    • Run headless: grunt jasmine;

Install headless version

Gotchas when installing node-canvas

# Is you receive this error: 
Error "Package xcb-shm was not found in the pkg-config search path." ...

# Run this
export PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig:$PKG_CONFIG_PATH

# Source:
https://github.com/Homebrew/homebrew/issues/14123