verne-fluid-type
Version:
Verne: a fluid typography and spacing system of SASS mixins for impeccably responsive websites.
14 lines (12 loc) • 533 B
JavaScript
const path = require('path')
const sassTrue = require('sass-true')
const glob = require('glob')
describe('Sass', () => {
// Find all of the Sass files that end in `*.spec.scss` in any directory in this project.
// I use path.resolve because True requires absolute paths to compile test files.
const sassTestFiles = glob.sync(path.resolve(__dirname, '**/*.spec.scss'))
// Run True on every file found with the describe and it methods provided
sassTestFiles.forEach(file =>
sassTrue.runSass({file}, describe, it)
)
})