mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-06 09:14:00 -08:00
15 lines
637 B
JavaScript
15 lines
637 B
JavaScript
const path = require("path");
|
|
const sassTrue = require("sass-true");
|
|
const glob = require("glob");
|
|
|
|
// https://www.educative.io/blog/sass-tutorial-unit-testing-with-sass-true
|
|
describe("Sass", () => {
|
|
// Find all of the Sass files that end in `*.test.scss` in any directory of this project.
|
|
// I use path.resolve because True requires absolute paths to compile test files.
|
|
const sassTestFiles = glob.sync(path.resolve(process.cwd(), "__tests__/**/*.test.scss"));
|
|
|
|
// Run True on every file found with the describe and it methods provided
|
|
sassTestFiles.forEach(file =>
|
|
sassTrue.runSass({ file }, { describe, it })
|
|
);
|
|
});
|