Skip to content

Instantly share code, notes, and snippets.

View grandecomplex's full-sized avatar
🎯
Hustling

Alex Grande grandecomplex

🎯
Hustling
View GitHub Profile
@grandecomplex
grandecomplex / phantomjs-qunit-runner.js
Created August 14, 2011 06:52
PhantomJS Qunit Snippet To Run And Report Qunit Errors
var page = new WebPage();
page.viewportSize = { width: 1000, height: 1200 };
page.onConsoleMessage = function (msg) {
console.log(msg);
};
page.open(phantom.args[0], function (status) {