Firefox-UI-Fix/__tests__/scss.spec.js
2021-12-15 15:01:16 +09:00

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 })
);
});