Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eyeglass-dev-testutils

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eyeglass-dev-testutils

Testing Utilities. For Eyeglass.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by1000%
Maintainers
1
Weekly downloads
 
Created
Source

eyeglass-dev-testutils Build Status Version License

A suite of utilities for writing tests in eyeglass modules.

Installation

npm install eyeglass-dev-testutils --save-dev

Usage

Example test_my_project.js file.

var path = require("path");
var sass = require("node-sass");
var eyeglass = require("eyeglass");
var Testutils = require("eyeglass-dev-testutils");
var testutils = new Testutils({
  engines: {
    sass: sass,
    eyeglass: eyeglass
  }
});

var fixtureDir = path.join(__dirname, "fixtures");  // ./test/fixtures/
var fixtures = testutils.getSassFixtures(fixtureDir); // returns a collection of test fixtures

// for each fixture...
Object.keys(fixtures).forEach(function(name) {
  var fixture = fixtures[name];

  describe("Compile Fixture `" + name + "`", function() {
    // assert the compiled source matches the expected CSS
    it("the output should match " + name + ".css", function(done) {
      testutils.assertCompiles(fixture.source, fixture.expected, done);
    });
  });
});

Your test directory would look something like this:

├── fixtures
│   ├── simpleTest.css
│   ├── simpleTest.scss
│   ├── someTest.css
│   ├── someTest.scss
│   ├── someTest2.css
│   └── someTest2.scss
└── test_my_project.js

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

FAQs

Package last updated on 17 Nov 2015

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc