A suite of utilities for writing tests in eyeglass
modules.
npm install eyeglass-dev-testutils --save-dev
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
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.