eyeglass-dev-testutils
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 testutils = require("eyeglass-dev-testutils");
var path = require("path");
var fixtureDir = path.join(__dirname, "fixtures");
var fixtures = testutils.getSassFixtures(fixtureDir);
Object.keys(fixtures).forEach(function(name) {
var fixture = fixtures[name];
describe("Compile Fixture `" + name + "`", function() {
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
Custom engines
If you need to use a specific version of Sass or eyeglass, you can pass it via the engine option:
var Testutils = require("eyeglass-dev-testutils");
var sass = require("node-sass");
var eyeglass = require("eyeglass");
var testutils = new Testutils({
engines: {
sass: sass,
eyeglass: eyeglass
}
});
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.