Socket
Book a DemoInstallSign in
Socket

gozer

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gozer

A phantomJS wrapper for testing your CSS

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
2
Created
Source

gozer

Build Status

Gozer

gozer is a phantomJS wrapper. It can do normal phantomJS stuff, using promises:

var Gozer = require('gozer');

// Load an instance pointed at http://localhost:3000
var gozer = new Gozer({port: 3000});

// Get a page
var page = gozer.visit('/');

// Do some stuff with the page
page
  .run(function() {
    return document.title;
  })
  .then(function(title) {
    console.log('The page title is', title);
  });

but that's not why we built it. We built gozer to test our CSS, so it really shines when it's used in a test framework. Here's an example using mocha and chai-as-promised:

var Gozer = require('gozer');

describe('google.com', function() {
  var gozer, page;

  before(function() {
    gozer = new Gozer({host: 'google.com'});
  });

  describe('the homepage', function() {
    beforeEach(function() {
      page = gozer.visit('/');
    });

    it('uses the arial font', function() {
      var fontPromise = page.getStyle('body', 'font-family');

      return expect(fontPromise).to.eventually.have.string('arial');
    });
  });
});

For more examples, check out gozer's own tests.

Installation and Setup

Gozer is meant to be used as a node module, so it's as simple as

npm install gozer

Keywords

css

FAQs

Package last updated on 13 Oct 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.